Introduce 'requires restart.'
[tweakr] / libmaemo-tweaks-section / maemo-tweaks-section.c
index 1f87b2c..336b16b 100644 (file)
@@ -39,12 +39,14 @@ maemo_tweaks_section_get_widget (MaemoTweaksSection *section)
 }
 
 void
-maemo_tweaks_section_save (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)->save)
-        MAEMO_TWEAKS_SECTION_GET_CLASS (section)->save (section);
+        MAEMO_TWEAKS_SECTION_GET_CLASS (section)->save (section,
+                                                        requires_restart);
     else
         g_warning ("%s: section class %s doesn't implement "
                    "MaemoTweaksSection::filter ()\n",