]> git.lyx.org Git - lyx.git/commitdiff
Remove unnecessary FileName construction.
authorAbdelrazak Younes <younes@lyx.org>
Wed, 30 Jul 2008 06:51:50 +0000 (06:51 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Wed, 30 Jul 2008 06:51:50 +0000 (06:51 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25996 a592a061-630c-0410-9148-cb99ea01b6c8

src/graphics/PreviewLoader.cpp

index 1a478a81ac10ea44e5b2cbee03c7161240d82e89..514b6253d35facb1efdf88a337ad7e1c2b3a2aa3 100644 (file)
@@ -354,7 +354,7 @@ InProgress::InProgress(string const & filename_base,
                       PendingSnippets const & pending,
                       string const & to_format)
        : pid(0),
-         metrics_file(FileName(filename_base + ".metrics")),
+         metrics_file(filename_base + ".metrics"),
          snippets(pending.size())
 {
        PendingSnippets::const_iterator pit  = pending.begin();