diff options
author | Colomban Wendling <[email protected]> | 2023-11-15 15:10:11 +0100 |
---|---|---|
committer | Luke from DC <[email protected]> | 2023-11-21 20:19:58 +0000 |
commit | 96c7ebc6dc9e8b8327db04a9570054ee78743353 (patch) | |
tree | 5d600712c7b3c035dbe78045641cdad9e358b91a /applets/clock/calendar-window.c | |
parent | 7632b4fe9bb81a440bdde64c8cc45b15e07b1de8 (diff) | |
download | mate-panel-96c7ebc6dc9e8b8327db04a9570054ee78743353.tar.bz2 mate-panel-96c7ebc6dc9e8b8327db04a9570054ee78743353.tar.xz |
Reduce scope of variables
Mostly found by cppcheck.
Diffstat (limited to 'applets/clock/calendar-window.c')
-rw-r--r-- | applets/clock/calendar-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applets/clock/calendar-window.c b/applets/clock/calendar-window.c index cf6ef670..b4157344 100644 --- a/applets/clock/calendar-window.c +++ b/applets/clock/calendar-window.c @@ -543,8 +543,6 @@ void calendar_window_set_show_weeks (CalendarWindow *calwin, gboolean show_weeks) { - GtkCalendarDisplayOptions options; - g_return_if_fail (CALENDAR_IS_WINDOW (calwin)); if (show_weeks == calwin->priv->show_weeks) @@ -553,6 +551,8 @@ calendar_window_set_show_weeks (CalendarWindow *calwin, calwin->priv->show_weeks = show_weeks; if (calwin->priv->calendar) { + GtkCalendarDisplayOptions options; + options = gtk_calendar_get_display_options (GTK_CALENDAR (calwin->priv->calendar)); if (show_weeks) |