]> git.lyx.org Git - lyx.git/blobdiff - src/insets/RenderGraphic.cpp
Fix bug http://bugzilla.lyx.org/show_bug.cgi?id=4910 by creating InsetText::addToToc().
[lyx.git] / src / insets / RenderGraphic.cpp
index 60ca378ba5aa40d17333952446220e4592eadd83..07185ccdfedf55e6ee549d6993cf82271c2fe7e7 100644 (file)
@@ -14,7 +14,9 @@
 
 #include "insets/Inset.h"
 
-#include "gettext.h"
+#include "support/FileName.h"
+#include "support/filetools.h"
+#include "support/gettext.h"
 #include "LyX.h"
 #include "LyXRC.h"
 #include "MetricsInfo.h"
@@ -28,6 +30,7 @@
 
 #include <boost/bind.hpp>
 
+using namespace std;
 
 namespace lyx {
 
@@ -153,11 +156,11 @@ void RenderGraphic::metrics(MetricsInfo & mi, Dimension & dim) const
                docstring const msg = statusMessage(params_, loader_.status());
                if (!msg.empty()) {
                        msgFont.setSize(FONT_SIZE_TINY);
-                       font_width = std::max(font_width,
+                       font_width = max(font_width,
                                theFontMetrics(msgFont).width(msg));
                }
 
-               dim.wid = std::max(50, font_width + 15);
+               dim.wid = max(50, font_width + 15);
        }
 
        dim_ = dim;
@@ -193,7 +196,7 @@ void RenderGraphic::draw(PainterInfo & pi, int x, int y) const
                // Print the file name.
                FontInfo msgFont = pi.base.font;
                msgFont.setFamily(SANS_FAMILY);
-               std::string const justname = params_.filename.onlyFileName();
+               string const justname = params_.filename.onlyFileName();
 
                if (!justname.empty()) {
                        msgFont.setSize(FONT_SIZE_FOOTNOTE);