summaryrefslogtreecommitdiffstats
path: root/src/htmlattrib.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2010-05-07 19:37:33 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2010-05-07 19:37:33 (GMT)
commita3b06c4fd310fdeda48a4730139cee09b5302072 (patch)
tree58636054e8f52c5851109b908053cc4da26b060a /src/htmlattrib.h
parent368c93a05bf38e440dba3f033f6e2e1cbeb2f379 (diff)
downloadDoxygen-a3b06c4fd310fdeda48a4730139cee09b5302072.zip
Doxygen-a3b06c4fd310fdeda48a4730139cee09b5302072.tar.gz
Doxygen-a3b06c4fd310fdeda48a4730139cee09b5302072.tar.bz2
Release-1.6.3-20100507
Diffstat (limited to 'src/htmlattrib.h')
-rw-r--r--src/htmlattrib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/htmlattrib.h b/src/htmlattrib.h
index 6b7006c..ad0f0d8 100644
--- a/src/htmlattrib.h
+++ b/src/htmlattrib.h
@@ -18,8 +18,8 @@
/*! A Html option. A name, value pair */
struct HtmlAttrib
{
- QString name;
- QString value;
+ QCString name;
+ QCString value;
};
/*! @brief A list of Html attributes.
@@ -35,10 +35,10 @@ class HtmlAttribList : public QList<HtmlAttrib>
{ operator=(l); }
HtmlAttribList &operator=(const HtmlAttribList &l)
{ clear(); QList<HtmlAttrib>::operator=(l); return *this; }
- QString toString() const
+ QCString toString() const
{
HtmlAttribList *that = (HtmlAttribList *)this;
- QString result;
+ QCString result;
HtmlAttrib *attr=that->first();
while (attr)
{