]> git.saurik.com Git - wxWidgets.git/commitdiff
added missing semicolons after asserts (patch 567853)
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Jun 2002 15:26:35 +0000 (15:26 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Jun 2002 15:26:35 +0000 (15:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/xrc/xh_unkwn.cpp
src/common/dynload.cpp
src/common/wincmn.cpp
src/gtk/window.cpp
src/gtk1/window.cpp
src/mgl/window.cpp
src/x11/bitmap.cpp
src/xrc/xh_unkwn.cpp
wxPython/contrib/dllwidget/dllwidget.cpp

index 5896ed5e0b35f3333a2ba29988f49b2e32759385..99a514c18fc66a5c9dc1176abb26578265151b0d 100644 (file)
@@ -52,7 +52,7 @@ protected:
 
 void wxUnknownControlContainer::AddChild(wxWindowBase *child)
 {
 
 void wxUnknownControlContainer::AddChild(wxWindowBase *child)
 {
-    wxASSERT_MSG( !m_controlAdded, wxT("Couldn't add two unknown controls to the same container!") )
+    wxASSERT_MSG( !m_controlAdded, wxT("Couldn't add two unknown controls to the same container!") );
 
     wxPanel::AddChild(child);
 
 
     wxPanel::AddChild(child);
 
index 3735dada227abe85ee1bef76dc42c6b809cd6ff1..f330d816656a8d467458040f35fbc43b6f3c218e 100644 (file)
@@ -433,7 +433,7 @@ void wxPluginLibrary::RestoreClassInfo()
         info = wxClassInfo::sm_first;
         while( info->m_next && info->m_next != m_after ) info = info->m_next;
 
         info = wxClassInfo::sm_first;
         while( info->m_next && info->m_next != m_after ) info = info->m_next;
 
-        wxASSERT_MSG( info, _T("ClassInfo from wxPluginLibrary not found on purge"))
+        wxASSERT_MSG( info, _T("ClassInfo from wxPluginLibrary not found on purge"));
 
         info->m_next = m_before;
     }
 
         info->m_next = m_before;
     }
index 65fdad6ae3053458280df79c5f4a0fe835e11315..faa3837b1c3d033ca61507ccf74fd9ab9264648c 100644 (file)
@@ -1960,7 +1960,7 @@ void wxWindowBase::ReleaseMouse()
 {
     wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(0x%08x)"), this);
 
 {
     wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(0x%08x)"), this);
 
-    wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") )
+    wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") );
 
     DoReleaseMouse();
 
 
     DoReleaseMouse();
 
index 080f5bca5ebdce89cf70211cae7e3b94282cdbe4..ed792dcc175f2d478e4f72642b0b4cb4b4b784e1 100644 (file)
@@ -1730,7 +1730,7 @@ static gint gtk_window_focus_out_callback( GtkWidget *widget, GdkEventFocus *gdk
         //     always) and makes using Mahogany quite annoying
 #if 0
         wxASSERT_MSG( wxGetTopLevelParent(win) == g_activeFrame,
         //     always) and makes using Mahogany quite annoying
 #if 0
         wxASSERT_MSG( wxGetTopLevelParent(win) == g_activeFrame,
-                        wxT("unfocusing window that hasn't gained focus properly") )
+                        wxT("unfocusing window that hasn't gained focus properly") );
 #endif // 0
 
         g_activeFrameLostFocus = TRUE;
 #endif // 0
 
         g_activeFrameLostFocus = TRUE;
index 080f5bca5ebdce89cf70211cae7e3b94282cdbe4..ed792dcc175f2d478e4f72642b0b4cb4b4b784e1 100644 (file)
@@ -1730,7 +1730,7 @@ static gint gtk_window_focus_out_callback( GtkWidget *widget, GdkEventFocus *gdk
         //     always) and makes using Mahogany quite annoying
 #if 0
         wxASSERT_MSG( wxGetTopLevelParent(win) == g_activeFrame,
         //     always) and makes using Mahogany quite annoying
 #if 0
         wxASSERT_MSG( wxGetTopLevelParent(win) == g_activeFrame,
-                        wxT("unfocusing window that hasn't gained focus properly") )
+                        wxT("unfocusing window that hasn't gained focus properly") );
 #endif // 0
 
         g_activeFrameLostFocus = TRUE;
 #endif // 0
 
         g_activeFrameLostFocus = TRUE;
index 36baf4f2cba6114eddedaeeabd38926c94e45880..8044f63ced81bf0e32b82d29644e17718df6594f 100644 (file)
@@ -808,7 +808,7 @@ void wxWindowMGL::DoCaptureMouse()
 
 void wxWindowMGL::DoReleaseMouse()
 {
 
 void wxWindowMGL::DoReleaseMouse()
 {
-    wxASSERT_MSG( gs_mouseCapture == this, wxT("attempt to release mouse, but this window hasn't captured it") )
+    wxASSERT_MSG( gs_mouseCapture == this, wxT("attempt to release mouse, but this window hasn't captured it") );
     
     MGL_wmUncaptureEvents(m_wnd, wxMGL_CAPTURE_MOUSE);
     gs_mouseCapture = NULL;
     
     MGL_wmUncaptureEvents(m_wnd, wxMGL_CAPTURE_MOUSE);
     gs_mouseCapture = NULL;
index 9659dc351c9a9d236f6549128f06b25366ef8f47..38f8aba90aa5190be4e6d83baf921cc29c945f39 100644 (file)
@@ -370,7 +370,7 @@ bool wxBitmap::CreateFromXpm( const char **bits )
         XGetGeometry( xdisplay, pixmap, &xroot, &xRet, &yRet,
             &widthRet, &heightRet, &borderWidthRet, &depthRet);
 
         XGetGeometry( xdisplay, pixmap, &xroot, &xRet, &yRet,
             &widthRet, &heightRet, &borderWidthRet, &depthRet);
 
-        wxASSERT_MSG( bpp == (int)depthRet, wxT("colour depth mismatch") )
+        wxASSERT_MSG( bpp == (int)depthRet, wxT("colour depth mismatch") );
 #endif
 
         XpmFreeAttributes(&xpmAttr);
 #endif
 
         XpmFreeAttributes(&xpmAttr);
index 5896ed5e0b35f3333a2ba29988f49b2e32759385..99a514c18fc66a5c9dc1176abb26578265151b0d 100644 (file)
@@ -52,7 +52,7 @@ protected:
 
 void wxUnknownControlContainer::AddChild(wxWindowBase *child)
 {
 
 void wxUnknownControlContainer::AddChild(wxWindowBase *child)
 {
-    wxASSERT_MSG( !m_controlAdded, wxT("Couldn't add two unknown controls to the same container!") )
+    wxASSERT_MSG( !m_controlAdded, wxT("Couldn't add two unknown controls to the same container!") );
 
     wxPanel::AddChild(child);
 
 
     wxPanel::AddChild(child);
 
index 7e39d634fde685c7765bf96cf285278aae6cee4a..025c28b8062532a4e92fc6c83571a5ebf214d47d 100644 (file)
@@ -49,7 +49,7 @@ wxDllWidget::~wxDllWidget()
 
 void wxDllWidget::AddChild(wxWindowBase *child)
 {
 
 void wxDllWidget::AddChild(wxWindowBase *child)
 {
-    wxASSERT_MSG( !m_controlAdded, wxT("Couldn't load two widgets into one container!") )
+    wxASSERT_MSG( !m_controlAdded, wxT("Couldn't load two widgets into one container!") );
 
     wxPanel::AddChild(child);
 
 
     wxPanel::AddChild(child);