]> 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 4b525a18b1e38eb5d60f06d98ac231433ff996cf..b2ab630764c01a9d26922d82acc33bde27d4f4fb 100644 (file)
 #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