From: Vadim Zeitlin Date: Mon, 9 Oct 2006 17:11:10 +0000 (+0000) Subject: no changes, just replaced C comment with a C++ one X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fea909e19e86b8da2d54c530d3a89ee9456c3333 no changes, just replaced C comment with a C++ one git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41817 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/notebook.cpp b/src/gtk/notebook.cpp index 74e3465b81..427e65677c 100644 --- a/src/gtk/notebook.cpp +++ b/src/gtk/notebook.cpp @@ -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 {