]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/combobox.h
Make wxDC::Blit() and StretchBlit() documentation more useful.
[wxWidgets.git] / interface / wx / combobox.h
index f692cc578b795ffbe69048e720026905a3a7d63d..8a78e9c4c83ad0b507d1602a3fa837d52187dcc2 100644 (file)
@@ -314,7 +314,15 @@ public:
     virtual int FindString(const wxString& s, bool bCase = false) const;
     virtual wxString GetString(unsigned int n) const;
     virtual wxString GetStringSelection() const;
-    virtual void SetString(unsigned int n, const wxString& s);
+
+    /**
+        Changes the text of the specified combobox item.
+
+        Notice that if the item is the currently selected one, i.e. if its text
+        is displayed in the text part of the combobox, then the text is also
+        replaced with the new @a text.
+     */
+    virtual void SetString(unsigned int n, const wxString& text);
 
     virtual unsigned int GetCount() const;
 };