summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pages/recordings.ecpp4
-rw-r--r--tntfeatures.h3
2 files changed, 0 insertions, 7 deletions
diff --git a/pages/recordings.ecpp b/pages/recordings.ecpp
index df34c67..7975438 100644
--- a/pages/recordings.ecpp
+++ b/pages/recordings.ecpp
@@ -208,15 +208,11 @@ for (recIter = recItems.begin(); recIter != recItems.end(); ++recIter) {
<li class="recording">
<& rec_item_dir name=(recItem->Name()) level=(level) &>
<%cpp>
-#if TNT_HAS_QUERYPARAMS
#if TNT_QUERYPARAMS_NO_BOOL
tnt::QueryParams recItemParams(qparam);
#else
tnt::QueryParams recItemParams(qparam, false);
#endif
-#else
- cxxtools::QueryParams recItemParams(qparam, false);
-#endif
for (path_type::const_iterator i = path.begin(); i != path.end(); ++i) {
recItemParams.add("path", *i);
}
diff --git a/tntfeatures.h b/tntfeatures.h
index d28281a..0aabaca 100644
--- a/tntfeatures.h
+++ b/tntfeatures.h
@@ -10,9 +10,6 @@
// SSL-Support works from tntnet version 1.6.1 onwards.
#define TNT_SSL_SUPPORT (TNTVERSION >= 16100)
-// Query params are now in tntnet and not in cxxtools
-#define TNT_HAS_QUERYPARAMS (TNTVERSION >= 16060)
-
// Query params without boolean parameter
#define TNT_QUERYPARAMS_NO_BOOL (TNTVERSION >= 22000)