X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7e6b478087cfbc8ce55775014ad187359a9ff878..69357fa0cb9bacb2c537837d27f11883a82b2425:/include/wx/variant.h diff --git a/include/wx/variant.h b/include/wx/variant.h index bee2b4a646..dffe0a0190 100644 --- a/include/wx/variant.h +++ b/include/wx/variant.h @@ -290,14 +290,14 @@ public: // list operations // ------------------------------ - wxVariant(const wxList& val, const wxString& name = wxEmptyString); // List of variants - bool operator== (const wxList& value) const; - bool operator!= (const wxList& value) const; - void operator= (const wxList& value) ; + wxVariant(const wxVariantList& val, const wxString& name = wxEmptyString); // List of variants + bool operator== (const wxVariantList& value) const; + bool operator!= (const wxVariantList& value) const; + void operator= (const wxVariantList& value) ; // Treat a list variant as an array wxVariant operator[] (size_t idx) const; wxVariant& operator[] (size_t idx) ; - wxList& GetList() const ; + wxVariantList& GetList() const ; // Return the number of elements in a list size_t GetCount() const;