diff options
author | monsta <[email protected]> | 2015-12-17 16:26:46 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2015-12-17 16:26:46 +0300 |
commit | 122bd6c6b709de535f9dd55c5c73c0943ded164c (patch) | |
tree | c5a8198c3708043acbc46b44bd9f657210ceebad /timerapplet | |
parent | dd29a99ed0abdcf28791d32d93471b018859038c (diff) | |
download | mate-applets-122bd6c6b709de535f9dd55c5c73c0943ded164c.tar.bz2 mate-applets-122bd6c6b709de535f9dd55c5c73c0943ded164c.tar.xz |
timer: fix build warning
Diffstat (limited to 'timerapplet')
-rw-r--r-- | timerapplet/timerapplet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timerapplet/timerapplet.c b/timerapplet/timerapplet.c index dee75511..ac12a77a 100644 --- a/timerapplet/timerapplet.c +++ b/timerapplet/timerapplet.c @@ -295,7 +295,7 @@ timer_preferences_callback (GtkAction *action, TimerApplet *applet) GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL)); - table = gtk_table_new (6, 2, FALSE); + table = GTK_TABLE (gtk_table_new (6, 2, FALSE)); gtk_table_set_row_spacings (table, 12); gtk_table_set_col_spacings (table, 12); |