]> git.saurik.com Git - wxWidgets.git/commitdiff
no changes, just replaced C comment with a C++ one
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 9 Oct 2006 17:11:10 +0000 (17:11 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 9 Oct 2006 17:11:10 +0000 (17:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41817 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/notebook.cpp

index 74e3465b81e71a10f40628465494124ea7baaae8..427e65677cd3c59340d9d929b354198ad346747e 100644 (file)
@@ -120,9 +120,8 @@ static void gtk_notebook_page_change_callback(GtkNotebook *WXUNUSED(widget),
     {
         if ( !notebook->SendPageChangingEvent(page) )
         {
-            /* program doesn't allow the page change */
-            g_signal_stop_emission_by_name (notebook->m_widget,
-                                            "switch_page");
+            // program doesn't allow the page change
+            g_signal_stop_emission_by_name(notebook->m_widget, "switch_page");
         }
         else // change allowed
         {