From befc36f88871cc7d5f116b9ffca6d669a6993ea2 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 27 Mar 2008 21:27:12 +0000 Subject: [PATCH] Use C++ names in the text, not wxPython names git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52870 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/popup/popup.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/popup/popup.cpp b/samples/popup/popup.cpp index 8a3bcf268c..47b94bb0e0 100644 --- a/samples/popup/popup.cpp +++ b/samples/popup/popup.cpp @@ -124,8 +124,8 @@ SimpleTransientPopup::SimpleTransientPopup( wxWindow *parent ) NULL, this); wxStaticText *text = new wxStaticText( m_panel, wxID_ANY, - wxT("wx.PopupTransientWindow is a\n") - wxT("wx.PopupWindow which disappears\n") + wxT("wxPopupTransientWindow is a\n") + wxT("wxPopupWindow which disappears\n") wxT("automatically when the user\n") wxT("clicks the mouse outside it or if it\n") wxT("(or its first child) loses focus in \n") @@ -317,7 +317,7 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame) END_EVENT_TABLE() MyFrame::MyFrame(const wxString& title) - : wxFrame(NULL, wxID_ANY, title) +: wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(500,300)) { m_simplePopup = m_scrolledPopup = NULL; -- 2.45.2