summaryrefslogtreecommitdiff
path: root/src/util/htmlescape.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/htmlescape.h')
-rw-r--r--src/util/htmlescape.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/util/htmlescape.h b/src/util/htmlescape.h
new file mode 100644
index 0000000..875cfaa
--- /dev/null
+++ b/src/util/htmlescape.h
@@ -0,0 +1,33 @@
+/*********
+*
+* In the name of the Father, and of the Son, and of the Holy Spirit.
+*
+* This file is part of BibleTime's source code, http://www.bibletime.info/.
+*
+* Copyright 1999-2014 by the BibleTime developers.
+* The BibleTime source code is licensed under the GNU General Public License version 2.0.
+*
+**********/
+
+#ifndef UTIL_HTMLESCAPE_H
+#define UTIL_HTMLESCAPE_H
+
+#include <QString>
+#if QT_VERSION < 0x050000
+#include <QTextDocument>
+#endif
+
+
+namespace util {
+
+inline QString htmlEscape(const QString & str) {
+#if QT_VERSION < 0x050000
+ return Qt::escape(str);
+#else
+ return str.toHtmlEscaped();
+#endif
+}
+
+} /* namespace util { */
+
+#endif /* UTIL_HTMLESCAPE_H */