]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/fractal/fractal.cpp
significant API changes: wxVideoMode and methods using it added, GetDepth() and IsCol...
[wxWidgets.git] / demos / fractal / fractal.cpp
index fe84a6a58424cf4c35080690057822cd2a180c55..0bf697e9e6184940eab2d9f28a4fbfcc78f12571 100644 (file)
@@ -90,13 +90,13 @@ DECLARE_EVENT_TABLE()
 bool MyApp::OnInit()
 {
   // Create the main frame window
-  MyFrame *frame = new MyFrame(NULL, "Fractal Mountains for wxWindows", wxPoint(-1, -1), wxSize(640, 480));
+  MyFrame *frame = new MyFrame(NULL, _T("Fractal Mountains for wxWindows"), wxPoint(-1, -1), wxSize(640, 480));
 
   // Make a menubar
   wxMenu *file_menu = new wxMenu;
-  file_menu->Append(wxID_EXIT, "E&xit");
+  file_menu->Append(wxID_EXIT, _T("E&xit"));
   menuBar = new wxMenuBar;
-  menuBar->Append(file_menu, "&File");
+  menuBar->Append(file_menu, _T("&File"));
   frame->SetMenuBar(menuBar);
 
   int width, height;