]> git.lyx.org Git - lyx.git/blobdiff - src/insets/render_graphic.h
hopefully fix tex2lyx linking.
[lyx.git] / src / insets / render_graphic.h
index 3c41cc277e3b9d3c79864839a8c4408f7196fee2..498223521faedacca069e7f8c7ce6cefb921d56b 100644 (file)
@@ -18,6 +18,9 @@
 #include "graphics/GraphicsParams.h"
 
 
+namespace lyx {
+
+
 class RenderGraphic : public RenderBase
 {
 public:
@@ -31,7 +34,7 @@ public:
        void draw(PainterInfo & pi, int x, int y) const;
 
        /// Refresh the info about which file to display and how to display it.
-       void update(lyx::graphics::Params const & params);
+       void update(graphics::Params const & params);
 
        /// equivalent to dynamic_cast
        virtual RenderGraphic * asGraphic() { return this; }
@@ -41,9 +44,12 @@ private:
        RenderGraphic & operator=(RenderGraphic const &);
 
        /// The stored data.
-       lyx::graphics::Loader loader_;
-       lyx::graphics::Params params_;
+       graphics::Loader loader_;
+       graphics::Params params_;
 };
 
 
+
+} // namespace lyx
+
 #endif // NOT RENDER_GRAPHIC_H