diff options
author | rbuj <[email protected]> | 2020-12-29 22:11:29 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-01-28 21:09:37 +0100 |
commit | f343f45b504c6dd78736a505a7865a2cc3d353ed (patch) | |
tree | 2332d5c1b0c99e49317dc40d1dcc13fe06c90644 /cut-n-paste | |
parent | 7cd5fe838cfe53c06827377ab05530095ef69325 (diff) | |
download | eom-f343f45b504c6dd78736a505a7865a2cc3d353ed.tar.bz2 eom-f343f45b504c6dd78736a505a7865a2cc3d353ed.tar.xz |
Remove cppcheck warning knownConditionTrueFalse
Diffstat (limited to 'cut-n-paste')
-rw-r--r-- | cut-n-paste/toolbar-editor/egg-editable-toolbar.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c index b92ec33..135b3bd 100644 --- a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c +++ b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c @@ -1107,12 +1107,14 @@ static void update_fixed (EggEditableToolbar *etoolbar) { GtkWidget *toolbar, *dock; - if (!etoolbar->priv->fixed_toolbar) return; + + if (!etoolbar->priv->fixed_toolbar) + return; toolbar = etoolbar->priv->fixed_toolbar; dock = get_dock_nth (etoolbar, 0); - if (dock && toolbar && gtk_widget_get_parent (toolbar) == NULL) + if (dock && gtk_widget_get_parent (toolbar) == NULL) { gtk_box_pack_end (GTK_BOX (dock), toolbar, FALSE, TRUE, 0); |