]> git.saurik.com Git - wxWidgets.git/commitdiff
Interface tweaks and fixes for Phoenix
authorRobin Dunn <robin@alldunn.com>
Wed, 26 Oct 2011 05:52:53 +0000 (05:52 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 26 Oct 2011 05:52:53 +0000 (05:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69545 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/platinfo.h
interface/wx/process.h
interface/wx/radiobox.h

index 520f09ff45d50e392e12816cf65630b6bbacd61a..2cb33260a70be58c28c579256006857c587c928f 100644 (file)
@@ -181,7 +181,7 @@ public:
     /**
         Initializes the object using given values.
     */
-    wxPlatformInfo(wxPortId pid = wxPORT_UNKNOWN,
+    wxPlatformInfo(wxPortId pid,
                    int tkMajor = -1,
                    int tkMinor = -1,
                    wxOperatingSystemId id = wxOS_UNKNOWN,
index 7d62189291419458277d2c7a3a1f2811334b69c6..80117f40ff6cc398d2e75036e3a14897051d764d 100644 (file)
@@ -321,3 +321,6 @@ public:
     int GetPid();
 };
 
+
+wxEventType wxEVT_END_PROCESS;
+
index 71225040102eae99d7525365f08611a630bfdf9d..05ce753ce4fba9948b00dd56eabb9d7006494615 100644 (file)
@@ -326,4 +326,13 @@ public:
 
     */
     virtual bool Show(unsigned int item, bool show = true);
+
+
+    // pure virtuals that have implementations here
+    virtual unsigned int GetCount() const;
+    virtual wxString GetString(unsigned int n) const;
+    virtual void SetString(unsigned int n, const wxString& string);
+    virtual void SetSelection(int n);
+    virtual int GetSelection() const;
+
 };