]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gtk/GText.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / gtk / GText.h
index cb480342c094b63141623072fd8473cf89f998e6..b2ab630764c01a9d26922d82acc33bde27d4f4fb 100644 (file)
@@ -6,28 +6,32 @@
  *
  * \author Huang Ying
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef GTEXT_H
 #define GTEXT_H
 
 #include "GViewBase.h"
-#include "LString.h"
+
+namespace lyx {
+namespace frontend {
 
 class ControlCommand;
 
-class GText : public GViewCB<ControlCommand, GViewGladeB>
-{
+class GText : public GViewCB<ControlCommand, GViewGladeB> {
 public:
-       GText(Dialog & parent, string const & title, string const & label);
+       GText(Dialog & parent, std::string const & title, std::string const & label);
 private:
        virtual void apply();
        virtual void update();
        virtual void doBuild();
        void onEntryChanged();
-       string const label_;
+       std::string const label_;
        Gtk::Entry * entry_;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif