From d7f68025b95d8ecd42808d519bcce4f50acff3d5 Mon Sep 17 00:00:00 2001 From: Dieter Hametner Date: Wed, 11 Feb 2015 00:05:39 +0100 Subject: [PATCH] Drop support for old tntnet versions: Query params are now in tntnet and not in cxxtools Removed old code for cxxtools queryparams. --- pages/recordings.ecpp | 4 ---- tntfeatures.h | 3 --- 2 files changed, 7 deletions(-) diff --git a/pages/recordings.ecpp b/pages/recordings.ecpp index df34c67d..79754381 100644 --- a/pages/recordings.ecpp +++ b/pages/recordings.ecpp @@ -208,14 +208,10 @@ for (recIter = recItems.begin(); recIter != recItems.end(); ++recIter) {
  • <& 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 d28281aa..0aabaca2 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)