summaryrefslogtreecommitdiff
path: root/src/caja-side-pane.c
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2019-06-14 09:30:32 +0200
committerZenWalker <[email protected]>2019-06-17 15:18:27 +0200
commitef29013fdfd0df5d4a3cc6c5a8fb1583aabef952 (patch)
tree51c2c4afb9259ec97ba3303591bbc8e946f277d9 /src/caja-side-pane.c
parentcbd6b367e9b05c08bff88ee1cfa03c09c7ee2558 (diff)
downloadcaja-ef29013fdfd0df5d4a3cc6c5a8fb1583aabef952.tar.bz2
caja-ef29013fdfd0df5d4a3cc6c5a8fb1583aabef952.tar.xz
src: reduce the scope of some variables
Diffstat (limited to 'src/caja-side-pane.c')
-rw-r--r--src/caja-side-pane.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/caja-side-pane.c b/src/caja-side-pane.c
index 5c8abdab..63da35f5 100644
--- a/src/caja-side-pane.c
+++ b/src/caja-side-pane.c
@@ -73,7 +73,7 @@ static SidePanel *
panel_for_widget (CajaSidePane *side_pane, GtkWidget *widget)
{
GList *l;
- SidePanel *panel;
+ SidePanel *panel = NULL;
for (l = side_pane->details->panels; l != NULL; l = l->next)
{
@@ -470,7 +470,6 @@ caja_side_pane_remove_panel (CajaSidePane *side_pane,
GtkWidget *widget)
{
SidePanel *panel;
- int page_num;
g_return_if_fail (side_pane != NULL);
g_return_if_fail (CAJA_IS_SIDE_PANE (side_pane));
@@ -483,6 +482,8 @@ caja_side_pane_remove_panel (CajaSidePane *side_pane,
if (panel)
{
+ int page_num;
+
page_num = gtk_notebook_page_num (GTK_NOTEBOOK (side_pane->details->notebook),
widget);
gtk_notebook_remove_page (GTK_NOTEBOOK (side_pane->details->notebook),