]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/variant.tex
fixed typo
[wxWidgets.git] / docs / latex / wx / variant.tex
index 95a84ac9af22eafbf9aaab440b751a0b4636d220..919900f4162915ea67a6518d54748c168b2f0d85 100644 (file)
@@ -25,6 +25,10 @@ wxPropertyValue may be replaced by wxVariant eventually.
 
 \helpref{wxObject}{wxobject}
 
+\wxheading{Include files}
+
+<wx/variant.h>
+
 \wxheading{See also}
 
 \helpref{wxVariantData}{wxvariantdata}
@@ -41,7 +45,8 @@ Default constructor.
 
 Copy constructor.
 
-\func{}{wxVariant}{\param{const char*}{ value}, \param{const wxString\& }{name = ``"}}\\
+\func{}{wxVariant}{\param{const char*}{ value}, \param{const wxString\& }{name = ``"}}
+
 \func{}{wxVariant}{\param{const wxString\&}{ value}, \param{const wxString\& }{name = ``"}}
 
 Construction from a string value.
@@ -77,14 +82,6 @@ deleting {\it value} and its contents.
 
 %Note: this constructor is currently disabled because it causes a C++ ambiguity.
 
-\func{}{wxVariant}{\param{const wxTime\&}{ value}, \param{const wxString\& }{name = ``"}}
-
-Construction from a time.
-
-\func{}{wxVariant}{\param{const wxDate\&}{ value}, \param{const wxString\& }{name = ``"}}
-
-Construction from a date.
-
 \func{}{wxVariant}{\param{void*}{ value}, \param{const wxString\& }{name = ``"}}
 
 Construction from a void pointer.
@@ -141,12 +138,6 @@ Returns the character value.
 
 Returns a pointer to the internal variant data.
 
-\membersection{wxVariant::GetDate}\label{wxvariantgetdate}
-
-\constfunc{wxDate}{GetDate}{\void}
-
-Gets the date value.
-
 \membersection{wxVariant::GetDouble}\label{wxvariantgetdouble}
 
 \constfunc{double}{GetDouble}{\void}
@@ -171,12 +162,6 @@ Returns a constant reference to the variant name.
 
 Gets the string value.
 
-\membersection{wxVariant::GetTime}\label{wxvariantgettime}
-
-\constfunc{wxTime}{GetTime}{\void}
-
-Gets the time value.
-
 \membersection{wxVariant::GetType}\label{wxvariantgettype}
 
 \constfunc{wxString}{GetType}{\void}
@@ -201,13 +186,13 @@ Inserts a value at the front of the list.
 
 \constfunc{bool}{IsNull}{\void}
 
-Returns TRUE if there is no data associated with this variant, FALSE if there is data.
+Returns true if there is no data associated with this variant, false if there is data.
 
 \membersection{wxVariant::IsType}\label{wxvariantistype}
 
 \constfunc{bool}{IsType}{\param{const wxString\&}{ type}}
 
-Returns TRUE if {\it type} matches the type of the variant, FALSE otherwise.
+Returns true if {\it type} matches the type of the variant, false otherwise.
 
 \membersection{wxVariant::MakeNull}\label{wxvariantmakenull}
 
@@ -225,7 +210,7 @@ Makes a string representation of the variant value (for any type).
 
 \constfunc{bool}{Member}{\param{const wxVariant\&}{ value}}
 
-Returns TRUE if {\it value} matches an element in the list.
+Returns true if {\it value} matches an element in the list.
 
 \membersection{wxVariant::NullList}\label{wxvariantnulllist}
 
@@ -258,10 +243,6 @@ Sets the internal variant data, deleting the existing data if there is any.
 
 \func{void}{operator $=$}{\param{const double }{value}}
 
-\func{void}{operator $=$}{\param{const wxDate\& }{value}}
-
-\func{void}{operator $=$}{\param{const wxTime\& }{value}}
-
 \func{void}{operator $=$}{\param{void* }{value}}
 
 \func{void}{operator $=$}{\param{const wxList\& }{value}}
@@ -286,10 +267,6 @@ Assignment operators.
 
 \func{bool}{operator $==$}{\param{const double }{value}}
 
-\func{bool}{operator $==$}{\param{const wxDate\& }{value}}
-
-\func{bool}{operator $==$}{\param{const wxTime\& }{value}}
-
 \func{bool}{operator $==$}{\param{void* }{value}}
 
 \func{bool}{operator $==$}{\param{const wxList\& }{value}}
@@ -314,10 +291,6 @@ Equality test operators.
 
 \func{bool}{operator $!=$}{\param{const double }{value}}
 
-\func{bool}{operator $!=$}{\param{const wxDate\& }{value}}
-
-\func{bool}{operator $!=$}{\param{const wxTime\& }{value}}
-
 \func{bool}{operator $!=$}{\param{void* }{value}}
 
 \func{bool}{operator $!=$}{\param{const wxList\& }{value}}
@@ -353,24 +326,12 @@ Operator for implicit conversion to a double, using \helpref{wxVariant::GetDoubl
 
 Operator for implicit conversion to a long, using \helpref{wxVariant::GetLong}{wxvariantgetlong}.
 
-\membersection{wxVariant::operator wxDate}\label{wxvariantwxdate}
-
-\constfunc{wxDate}{operator wxDate}{\void}
-
-Operator for implicit conversion to a wxDate, using \helpref{wxVariant::GetDate}{wxvariantgetdate}.
-
 \membersection{wxVariant::operator wxString}\label{wxvariantwxstring}
 
 \constfunc{wxString}{operator wxString}{\void}
 
 Operator for implicit conversion to a string, using \helpref{wxVariant::MakeString}{wxvariantmakestring}.
 
-\membersection{wxVariant::operator wxTime}\label{wxvariantwxtime}
-
-\constfunc{wxTime}{operator wxTime}{\void}
-
-Operator for implicit conversion to a wxTime, using \helpref{wxVariant::GetTime}{wxvariantgettime}.
-
 \membersection{wxVariant::operator void*}\label{wxvariantvoid}
 
 \constfunc{void*}{operator void*}{\void}
@@ -386,6 +347,10 @@ and override the pure virtual functions.
 
 \helpref{wxObject}{wxobject}
 
+\wxheading{Include files}
+
+<wx/variant.h>
+
 \wxheading{See also}
 
 \helpref{wxVariant}{wxvariant}
@@ -408,7 +373,7 @@ Copy the data from `this' object to {\it data}.
 
 \constfunc{bool}{Eq}{\param{wxVariantData\&}{ data}}
 
-Returns TRUE if this object is equal to {\it data}.
+Returns true if this object is equal to {\it data}.
 
 \membersection{wxVariantData::GetType}\label{wxvariantdatagettype}