Remove HildonDialog deprecated symbol
authorJavier Jardón <javierjc1982@gmail.com>
Wed, 30 Sep 2009 11:45:33 +0000 (13:45 +0200)
committerSergio Villar Senin <svillar@igalia.com>
Wed, 30 Sep 2009 14:37:57 +0000 (16:37 +0200)
HildonDialog is deprecated, GtkDialog is the recommended widget

https://bugs.maemo.org/show_bug.cgi?id=5188

src/hildon2/modest-platform.c
src/widgets/modest-global-settings-dialog.c
src/widgets/modest-global-settings-dialog.h

index 53bfd52..35b4885 100644 (file)
@@ -700,7 +700,7 @@ folder_chooser_dialog_run (ModestFolderView *original,
        GtkWidget *pannable;
        const gchar *visible_id = NULL;
 
-       userdata.dialog = hildon_dialog_new ();
+       userdata.dialog = gtk_dialog_new ();
        pannable = hildon_pannable_area_new ();
        folder_view = modest_platform_create_folder_view (NULL);
 
index 043c7c6..41c6e9f 100644 (file)
@@ -104,15 +104,9 @@ modest_global_settings_dialog_get_type (void)
                        (GInstanceInitFunc) modest_global_settings_dialog_init,
                        NULL
                };
-#ifdef MODEST_TOOLKIT_HILDON2
-               my_type = g_type_register_static (HILDON_TYPE_DIALOG,
-                                                 "ModestGlobalSettingsDialog",
-                                                 &my_info, 0);
-#else
                my_type = g_type_register_static (GTK_TYPE_DIALOG,
                                                  "ModestGlobalSettingsDialog",
                                                  &my_info, 0);
-#endif
        }
        return my_type;
 }
index 25a787f..cd14357 100644 (file)
 #ifndef __MODEST_GLOBAL_SETTINGS_DIALOG_H__
 #define __MODEST_GLOBAL_SETTINGS_DIALOG_H__
 
-#ifdef MODEST_TOOLKIT_HILDON2
-#include <hildon/hildon-dialog.h>
-#else
 #include <gtk/gtk.h>
-#endif
 #include "widgets/modest-global-settings-dialog-priv.h"
 #include "modest-platform.h"
 /* other include files */
@@ -63,19 +59,11 @@ typedef struct _ModestGlobalSettingsDialog      ModestGlobalSettingsDialog;
 typedef struct _ModestGlobalSettingsDialogClass ModestGlobalSettingsDialogClass;
 
 struct _ModestGlobalSettingsDialog {
-#ifdef MODEST_TOOLKIT_HILDON2
-        HildonDialog parent;
-#else
         GtkDialog parent;
-#endif
 };
 
 struct _ModestGlobalSettingsDialogClass {
-#ifdef MODEST_TOOLKIT_HILDON2
-       HildonDialogClass parent_class;
-#else
        GtkDialogClass parent_class;
-#endif
 
        /* Returns the current connection method. Assumes that the device is online */
        ModestConnectedVia (*current_connection_func) (void);