]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/forms_gettext.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / forms_gettext.C
index 377eb205547aa1663b6d4c13752859b86777844a..75cf0b6dfde7818349a24b4ef5c228c33d6bec94 100644 (file)
@@ -9,16 +9,19 @@
  */
 #include <config.h>
 
-
 #include "forms_gettext.h"
+
 #include "support/lstrings.h"
 
-using namespace lyx::support;
+namespace support = lyx::support;
+
+using std::string;
+
 
 // Extract shortcut from "<identifier>|<shortcut>" string
 string const scex(string const & str)
 {
-       return split(str, '|');
+       return support::split(str, '|');
 }
 
 
@@ -26,6 +29,6 @@ string const scex(string const & str)
 string const idex(string const & str)
 {
        string identifier;
-       split(str, identifier, '|');
+       support::split(str, identifier, '|');
        return identifier;
 }