Introduce 'requires restart.'
[tweakr] / libmaemo-tweaks-section / maemo-tweaks-section.c
index 9d0a360..336b16b 100644 (file)
@@ -30,13 +30,23 @@ maemo_tweaks_section_new (GType type)
     return g_object_new (type, NULL);
 }
 
+GtkWidget *
+maemo_tweaks_section_get_widget (MaemoTweaksSection *section)
+{
+    g_return_val_if_fail (MAEMO_TWEAKS_IS_SECTION (section), NULL);
+
+    return section->widget;
+}
+
 void
-maemo_tweaks_section_build (MaemoTweaksSection *section)
+maemo_tweaks_section_save (MaemoTweaksSection *section,
+                           gboolean *requires_restart)
 {
     g_return_if_fail (MAEMO_TWEAKS_IS_SECTION (section));
 
-    if (MAEMO_TWEAKS_SECTION_GET_CLASS (section)->build)
-        MAEMO_TWEAKS_SECTION_GET_CLASS (section)->build (section);
+    if (MAEMO_TWEAKS_SECTION_GET_CLASS (section)->save)
+        MAEMO_TWEAKS_SECTION_GET_CLASS (section)->save (section,
+                                                        requires_restart);
     else
         g_warning ("%s: section class %s doesn't implement "
                    "MaemoTweaksSection::filter ()\n",