]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlTexinfo.C
guii2
[lyx.git] / src / frontends / controllers / ControlTexinfo.C
index f49d7674b515db2c62d3547fb38781bb2019da66..040192ce35becb13c33de9872a43035b0bc661fc 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
  *
@@ -21,7 +21,7 @@
 #include "ButtonControllerBase.h"
 #include "ControlTexinfo.h"
 #include "Dialogs.h"
-#include "LyXView.h"
+#include "frontends/LyXView.h"
 #include "BufferView.h"
 #include "gettext.h"
 #include "support/filetools.h" // FileSearch
@@ -61,9 +61,9 @@ void ControlTexinfo::runTexhash() const
        //path to texhash through system
        Systemcall one;
        one.startscript(Systemcall::Wait, "texhash");
-       
+
        p.pop();
-//     Alert::alert(_("texhash run!"), 
+//     Alert::alert(_("texhash run!"),
 //                _("rebuilding of the TeX-tree could only be successfull"),
 //                _("if you have had user-write-permissions to the tex-dir."));
 }
@@ -74,10 +74,10 @@ namespace {
 string const sortEntries(string & str_in)
 {
        std::vector<string> dbase = getVectorFromString(str_in,"\n");
-       std::sort(dbase.begin(), dbase.end());          // sort entries
-       std::vector<string>::iterator p = 
-           std::unique(dbase.begin(), dbase.end());    // compact
-       dbase.erase(p, dbase.end());                    // shrink
+       std::sort(dbase.begin(), dbase.end());          // sort entries
+       std::vector<string>::iterator p =
+           std::unique(dbase.begin(), dbase.end());    // compact
+       dbase.erase(p, dbase.end());                    // shrink
        return getStringFromVector(dbase,"\n");
 }
 
@@ -93,7 +93,7 @@ ControlTexinfo::getContents(texFileSuffix type, bool withFullPath) const
 
        string filename;
        switch (type) {
-       case bst: 
+       case bst:
                filename = bstFilename;
                break;
        case cls:
@@ -127,4 +127,3 @@ void ControlTexinfo::viewFile(string const filename) const
 {
        lv_.getDialogs()->showFile(filename);
 }
-