]> git.saurik.com Git - wxWidgets.git/commitdiff
wxApp::Get/SetVendorName functions added
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 3 Aug 1998 22:55:59 +0000 (22:55 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 3 Aug 1998 22:55:59 +0000 (22:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/app.h
include/wx/gtk1/app.h

index 0e90356615c7095bd3af9aae9523778e1601b81b..ee9f9fd0eda24bac79af29f153c255c66884f7fd 100644 (file)
@@ -90,6 +90,8 @@ class wxApp: public wxEvtHandler
     inline void SetAppName(const wxString& name) { m_appName = name; };
     inline wxString GetClassName(void) const { return m_className; }
     inline void SetClassName(const wxString& name) { m_className = name; }
+    const wxString& GetVendorName() const { return m_vendorName; }
+    void SetVendorName(const wxString& name) { m_vendorName = name; }
 
     inline void SetExitOnFrameDelete(bool flag) { m_exitOnFrameDelete = flag; }
     inline bool GetExitOnFrameDelete(void) const { return m_exitOnFrameDelete; }
@@ -119,8 +121,6 @@ class wxApp: public wxEvtHandler
     bool          m_exitOnFrameDelete;
     bool          m_wantDebugOutput;
     wxWindow     *m_topWindow;
-    wxString      m_appName;
-    wxString      m_className;
     
     gint          m_idleTag;
     
@@ -129,6 +129,11 @@ class wxApp: public wxEvtHandler
     
     static wxAppInitializerFunction m_appInitFn;
     
+private:
+  wxString m_vendorName,
+           m_appName,
+           m_className;
+
   DECLARE_EVENT_TABLE()
 };
 
index 0e90356615c7095bd3af9aae9523778e1601b81b..ee9f9fd0eda24bac79af29f153c255c66884f7fd 100644 (file)
@@ -90,6 +90,8 @@ class wxApp: public wxEvtHandler
     inline void SetAppName(const wxString& name) { m_appName = name; };
     inline wxString GetClassName(void) const { return m_className; }
     inline void SetClassName(const wxString& name) { m_className = name; }
+    const wxString& GetVendorName() const { return m_vendorName; }
+    void SetVendorName(const wxString& name) { m_vendorName = name; }
 
     inline void SetExitOnFrameDelete(bool flag) { m_exitOnFrameDelete = flag; }
     inline bool GetExitOnFrameDelete(void) const { return m_exitOnFrameDelete; }
@@ -119,8 +121,6 @@ class wxApp: public wxEvtHandler
     bool          m_exitOnFrameDelete;
     bool          m_wantDebugOutput;
     wxWindow     *m_topWindow;
-    wxString      m_appName;
-    wxString      m_className;
     
     gint          m_idleTag;
     
@@ -129,6 +129,11 @@ class wxApp: public wxEvtHandler
     
     static wxAppInitializerFunction m_appInitFn;
     
+private:
+  wxString m_vendorName,
+           m_appName,
+           m_className;
+
   DECLARE_EVENT_TABLE()
 };