Added mising AddBitmapList in wxBitmap

Added missing deletion of wxFrame's toolbar
  Removed a few superfluous ; (sorry)
  Mentioned dmalloc in INSTALL


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@566 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-08-16 19:39:29 +00:00
parent 11026f7b59
commit ff7b1510ea
40 changed files with 786 additions and 779 deletions

View File

@@ -36,12 +36,12 @@ wxScreenDC::wxScreenDC(void)
gdk_gc_set_subwindow( m_brushGC, GDK_INCLUDE_INFERIORS );
gdk_gc_set_subwindow( m_textGC, GDK_INCLUDE_INFERIORS );
gdk_gc_set_subwindow( m_bgGC, GDK_INCLUDE_INFERIORS );
};
}
wxScreenDC::~wxScreenDC(void)
{
EndDrawingOnTop();
};
}
bool wxScreenDC::StartDrawingOnTop( wxWindow *WXUNUSED(window) )
{
@@ -51,7 +51,7 @@ bool wxScreenDC::StartDrawingOnTop( wxWindow *WXUNUSED(window) )
{
StartDrawingOnTop();
return;
};
}
wxRectangle rect;
rect.x = 0;
rect.y = 0;
@@ -63,7 +63,7 @@ bool wxScreenDC::StartDrawingOnTop( wxWindow *WXUNUSED(window) )
StartDrawingOnTop( &rect );
return TRUE;
*/
};
}
bool wxScreenDC::StartDrawingOnTop( wxRectangle *WXUNUSED(rect) )
{
@@ -79,7 +79,7 @@ bool wxScreenDC::StartDrawingOnTop( wxRectangle *WXUNUSED(rect) )
y = rect->y;
width = rect->width;
height = rect->height;
};
}
GTK cannot set transparent backgrounds. :-(
@@ -107,7 +107,7 @@ bool wxScreenDC::StartDrawingOnTop( wxRectangle *WXUNUSED(rect) )
return TRUE;
*/
};
}
bool wxScreenDC::EndDrawingOnTop(void)
{
@@ -118,4 +118,5 @@ bool wxScreenDC::EndDrawingOnTop(void)
m_isOk = FALSE;
return TRUE;
*/
};
}