From 0b47cf6f3569804e8510d4839fca3260a343ef7a Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 7 Nov 2004 19:20:20 +0000 Subject: [PATCH] wxWindows -> wxWidgets git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30345 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/samples/foldbar/foldpanelbar/foldpanelbartest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/samples/foldbar/foldpanelbar/foldpanelbartest.cpp b/contrib/samples/foldbar/foldpanelbar/foldpanelbartest.cpp index 67f061286c..cd615c7cf6 100644 --- a/contrib/samples/foldbar/foldpanelbar/foldpanelbartest.cpp +++ b/contrib/samples/foldbar/foldpanelbar/foldpanelbartest.cpp @@ -86,7 +86,7 @@ enum }; // ---------------------------------------------------------------------------- -// event tables and other macros for wxWindows +// event tables and other macros for wxWidgets // ---------------------------------------------------------------------------- BEGIN_EVENT_TABLE(MyAppFrame, wxFrame) @@ -108,7 +108,7 @@ IMPLEMENT_APP(MyApp) bool MyApp::OnInit() { - MyAppFrame *frame = new MyAppFrame(_T("FoldPanelBarTest wxWindows Test Application"), + MyAppFrame *frame = new MyAppFrame(_T("FoldPanelBarTest wxWidgets Test Application"), wxPoint(50, 50), wxSize(200, 500)); SetTopWindow(frame); @@ -129,7 +129,7 @@ MyAppFrame::MyAppFrame(const wxString& title, const wxPoint& pos, const wxSize& SetMenuBar(CreateMenuBar()); CreateStatusBar(2); - SetStatusText(_T("Welcome to wxWindows!")); + SetStatusText(_T("Welcome to wxWidgets!")); _pnl = new wxFoldPanelBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxFPB_DEFAULT_STYLE, wxFPB_COLLAPSE_TO_BOTTOM);