]> git.stg.codes - stg.git/commitdiff
Use common case-conversion functions.
authorMaxim Mamontov <faust.madf@gmail.com>
Sat, 10 Jan 2015 20:06:16 +0000 (22:06 +0200)
committerMaxim Mamontov <faust.madf@gmail.com>
Sat, 10 Jan 2015 20:06:16 +0000 (22:06 +0200)
projects/stargazer/plugins/store/firebird/firebird_store.cpp
projects/stargazer/plugins/store/postgresql/postgresql_store.cpp

index 3c4f32adf50b1560d2d8fa14427e6f479e4da087..811601146f8ca7ee18ea414a1e6e80fd5a860be2 100644 (file)
@@ -33,9 +33,6 @@
 
 #include <string>
 #include <vector>
-#include <algorithm>
-
-#include <cctype>
 
 namespace
 {
@@ -81,9 +78,7 @@ std::string s;
 
 for(i = settings.moduleParams.begin(); i != settings.moduleParams.end(); ++i)
     {
-    s = i->param;
-
-    std::transform(s.begin(), s.end(), s.begin(), ::tolower);
+    s = ToLower(i->param);
 
     if (s == "server")
         db_server = *(i->value.begin());
index 3a1d7272f1267d05ace0cb08fef059e184c8e5a3..80431c0dd1c2f3b441256798b3bea2294568a871 100644 (file)
@@ -40,7 +40,6 @@
 
 #include <string>
 #include <vector>
-#include <algorithm>
 
 #include <libpq-fe.h>
 
@@ -97,8 +96,7 @@ std::string s;
 
 for(i = settings.moduleParams.begin(); i != settings.moduleParams.end(); ++i)
     {
-    s = i->param;
-    std::transform(s.begin(), s.end(), s.begin(), ToLower());
+    s = ToLower(i->param);
     if (s == "server")
         {
         server = *(i->value.begin());