]> git.lyx.org Git - lyx.git/blobdiff - src/insets/render_button.h
hopefully fix tex2lyx linking.
[lyx.git] / src / insets / render_button.h
index 4d805359d9e0264defd18976723bfa4efe4f82bc..fb4cfbf72f9759ad293038d2c5700406f288a7cc 100644 (file)
 
 #include "render_base.h"
 #include "box.h"
-#include <string>
+#include "support/docstring.h"
+
+
+namespace lyx {
 
 
 class RenderButton : public RenderBase
@@ -30,7 +33,7 @@ public:
        virtual void draw(PainterInfo & pi, int x, int y) const;
 
        /// Provide the text for the button
-       void update(std::string const &, bool editable);
+       void update(docstring const &, bool editable);
 
        /// The "sensitive area" box, i.e., the button area
        Box box() const { return button_box_; }
@@ -42,9 +45,12 @@ public:
 
 private:
        /// The stored data.
-       std::string text_;
+       docstring text_;
        bool editable_;
        Box button_box_;
 };
 
+
+} // namespace lyx
+
 #endif // NOT RENDER_BUTTON_H