]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormThesaurus.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormThesaurus.C
index 7d2a043f1f55364c8b06ebd1b01670ed225ebd3f..245ea49207123910ebfeed1ecb4a15a2a8c21121 100644 (file)
 
 #include <config.h>
 
-#include "ControlThesaurus.h"
 #include "FormThesaurus.h"
+#include "ControlThesaurus.h"
 #include "forms/form_thesaurus.h"
-#include "xformsBC.h"
+
 #include "xforms_helpers.h"
-#include "debug.h"
-#include "support/lstrings.h"
-#include "lyx_forms.h"
+#include "xformsBC.h"
 
-#include <cctype>
+#include "support/lstrings.h"
 
-using namespace lyx::support;
+#include "lyx_forms.h"
 
 #ifndef CXX_GLOBAL_CSTD
-using std::isupper;
 using std::islower;
+using std::isupper;
 #endif
 
 using std::vector;
+using std::string;
 
+namespace lyx {
+
+using support::lowercase;
+using support::trim;
+using support::uppercase;
+
+namespace frontend {
 
 typedef FormController<ControlThesaurus, FormView<FD_thesaurus> > base_class;
 
@@ -187,3 +193,6 @@ ButtonPolicy::SMInput FormThesaurus::input(FL_OBJECT * obj, long)
 
        return ButtonPolicy::SMI_VALID;
 }
+
+} // namespace frontend
+} // namespace lyx