1. dnd demo in treetest

2. compilation fix in drawing (for VC++)
3. refresh bug fixed in regtest, dnd/copying keys seems to work


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6065 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-02-15 23:57:33 +00:00
parent 5af3f0efd5
commit 5888ef1e7d
5 changed files with 111 additions and 21 deletions

View File

@@ -231,12 +231,13 @@ void MyFrame::ChooseFontGeneric(wxCommandEvent& WXUNUSED(event) )
void MyFrame::LogDialog(wxCommandEvent& event)
{
wxLogMessage("This is some message - everything is ok so far.");
wxLogMessage("Another message...");
wxLogMessage("Another message...\n... this one is on multiple lines");
wxLogWarning("And then something went wrong!");
// if we have this wxYield() here, everything breaks under GTK
wxYield();
wxLogError("Intermediary error handler decided to abort.");
wxLogError("The top level caller detected an error.");
wxLogError("The top level caller detected an unrecoverable error.");
wxLog::FlushActive();
wxLogMessage("And this is the same dialog but with only one message.");