]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed badly named wxHtmlTag::GetParam() argument: with_quotes, not with_commas
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 31 Aug 2007 13:48:37 +0000 (13:48 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 31 Aug 2007 13:48:37 +0000 (13:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48513 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/httag.tex
include/wx/html/htmltag.h
src/html/htmltag.cpp

index 70e6bb48c7a28874962fa7cd460b6d2ad5ffdd09..2ed4d073006567358b324c4f0c350b84afab4d0e 100644 (file)
@@ -94,7 +94,7 @@ and name of {\tt </table>} is "TABLE")
 
 \membersection{wxHtmlTag::GetParam}\label{wxhtmltaggetparam}
 
-\constfunc{wxString}{GetParam}{\param{const wxString\& }{par}, \param{bool }{with\_commas = false}}
+\constfunc{wxString}{GetParam}{\param{const wxString\& }{par}, \param{bool }{with\_quotes = false}}
 
 Returns the value of the parameter. You should check whether the
 parameter exists or not (use \helpref{HasParam}{wxhtmltaghasparam}) first.
@@ -103,7 +103,7 @@ parameter exists or not (use \helpref{HasParam}{wxhtmltaghasparam}) first.
 
 \docparam{par}{The parameter's name.}
 
-\docparam{with\_commas}{true if you want to get commas as well. See example.}
+\docparam{with\_quotes}{true if you want to get quotes as well. See example.}
 
 \wxheading{Example}
 
index 0ed5d2a8e6d5da369c01219ec9b670ddb812f9e0..40bcf488716d3eb7b046a7ed41842cb9a7f7bba5 100644 (file)
@@ -94,8 +94,8 @@ public:
     // enclosed with "
     // Example : <P align=right> GetParam("ALIGN") returns (RIGHT)
     //           <P IMG SRC="WhaT.jpg"> GetParam("SRC") returns (WhaT.jpg)
-    //                           (or ("WhaT.jpg") if with_commas == true)
-    wxString GetParam(const wxString& par, bool with_commas = false) const;
+    //                           (or ("WhaT.jpg") if with_quotes == true)
+    wxString GetParam(const wxString& par, bool with_quotes = false) const;
 
     // Convenience functions:
     bool GetParamAsColour(const wxString& par, wxColour *clr) const;
@@ -103,7 +103,7 @@ public:
 
     // Scans param like scanf() functions family does.
     // Example : ScanParam("COLOR", "\"#%X\"", &clr);
-    // This is always with with_commas=false
+    // This is always with with_quotes=false
     // Returns number of scanned values
     // (like sscanf() does)
     // NOTE: unlike scanf family, this function only accepts
index 4365a26554316d4165255e2fb0322b4403650d9c..d06313704346adb64c43c29d227228e51654d96b 100644 (file)
@@ -431,12 +431,12 @@ bool wxHtmlTag::HasParam(const wxString& par) const
     return (m_ParamNames.Index(par, false) != wxNOT_FOUND);
 }
 
-wxString wxHtmlTag::GetParam(const wxString& par, bool with_commas) const
+wxString wxHtmlTag::GetParam(const wxString& par, bool with_quotes) const
 {
     int index = m_ParamNames.Index(par, false);
     if (index == wxNOT_FOUND)
         return wxGetEmptyString();
-    if (with_commas)
+    if (with_quotes)
     {
         // VS: backward compatibility, seems to be never used by wxHTML...
         wxString s;