diffing dir...
Fri Oct 22 16:50:57 EDT 2010 Andy Stewart <laz...@gm...>
* New function in GTK+2.22 : Windows.Assistant.assistantCommit
Ignore-this: e564d37d83a77318ba0b1bb147173e63
{
hunk ./gtk/Graphics/UI/Gtk/Windows/Assistant.chs 92
+#if GTK_CHECK_VERSION(2,22,0)
+ assistantCommit,
+#endif
hunk ./gtk/Graphics/UI/Gtk/Windows/Assistant.chs 431
+#if GTK_CHECK_VERSION(2,22,0)
+-- | Erases the visited page history so the back button is not shown on the current page, and removes the
+-- cancel button from subsequent pages.
+-- [_$_]
+-- Use this when the information provided up to the current page is hereafter deemed permanent and
+-- cannot be modified or undone. For example, showing a progress page to track a long-running,
+-- unreversible operation after the user has clicked apply on a confirmation page.
+--
+-- * Available since Gtk+ version 2.22
+--
+assistantCommit :: AssistantClass self => self -> IO ()
+assistantCommit self =
+ {#call gtk_assistant_commit#} (toAssistant self)
+#endif
+
}
|