]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 18 Mar 2004 17:24:06 +0000 (17:24 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 18 Mar 2004 17:24:06 +0000 (17:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26257 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/sound/sound.cpp

index f1d3fa96d55584e8ab62e9260c38531aca9111b3..985db5ee52ff85b63ed0762177866021c1d1e655 100644 (file)
@@ -180,7 +180,8 @@ MyFrame::MyFrame(const wxString& title)
     // ... and attach this menu bar to the frame
     SetMenuBar(menuBar);
 
-    m_tc = new wxTextCtrl(this, -1, "", wxDefaultPosition, wxDefaultSize,
+    m_tc = new wxTextCtrl(this, -1, wxEmptyString,
+                          wxDefaultPosition, wxDefaultSize,
                           wxTE_MULTILINE|wxTE_READONLY);
     NotifyUsingFile(m_soundFile);
 }