summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/inputstrlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'addon/doxywizard/inputstrlist.cpp')
-rw-r--r--addon/doxywizard/inputstrlist.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/addon/doxywizard/inputstrlist.cpp b/addon/doxywizard/inputstrlist.cpp
index 660ce40..1d81436 100644
--- a/addon/doxywizard/inputstrlist.cpp
+++ b/addon/doxywizard/inputstrlist.cpp
@@ -260,3 +260,11 @@ void InputStrList::writeValue(QTextStream &t,QTextCodec *codec)
}
}
+bool InputStrList::isEmpty()
+{
+ foreach (QString s, m_strList)
+ {
+ if (!s.isEmpty()) return FALSE;
+ }
+ return TRUE;
+}