]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/dcclient.cpp
missing comma for Motif compilation added
[wxWidgets.git] / src / gtk1 / dcclient.cpp
index 918e0a52db4ae3223bd9f6d1239365471579c362..a5ee2b008c76b60c2cf83a53dcf32feb598b9518 100644 (file)
@@ -111,7 +111,8 @@ wxWindowDC::wxWindowDC( wxWindow *window )
     if (!window) return;
     
     GtkWidget *widget = window->m_wxwindow;
-    if (!widget) return;
+    if (!widget)
+        return;
     
     m_window = widget->window;
     
@@ -631,13 +632,13 @@ bool wxWindowDC::Blit( long xdest, long ydest, long width, long height,
        {
           /* we HAVE TO use the direct way for memory dcs
              that have mask since the XCopyArea doesn't know
-             about masks and */
+             about masks */
            use_bitmap_method = TRUE;
        }
        else if (memDC->m_selected.GetDepth() == 1)
        {
           /* we HAVE TO use the direct way for memory dcs
-             that are bitmaps because XCopyArea doesn't copy
+             that are bitmaps because XCopyArea doesn't cope
              with different bit depths */
            use_bitmap_method = TRUE;
        }