]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormWrap.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormWrap.C
index 07e0eff8e3cd9c5b9ec1fc10c33cfeacf1b205c3..37788f02026d9c819649869f947be8d485c44de9 100644 (file)
@@ -5,7 +5,7 @@
  *
  * \author Dekel Tsur
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 #include "lyx_forms.h"
 #include "support/tostr.h"
 
-using namespace lyx::support;
+using std::string;
 
-typedef FormController<ControlWrap, FormView<FD_wrap> > base_class;
+namespace lyx {
+
+using support::getStringFromVector;
+using support::subst;
 
+namespace frontend {
+
+typedef FormController<ControlWrap, FormView<FD_wrap> > base_class;
 
 FormWrap::FormWrap(Dialog & parent)
        : base_class(parent, _("Text Wrap Settings"))
@@ -110,3 +116,6 @@ void FormWrap::update()
        else
                placement_.set(params.placement.c_str()[0]);
 }
+
+} // namespace frontend
+} // namespace lyx