]> git.lyx.org Git - lyx.git/blobdiff - src/LyX.cpp
- UI support for the LaTeX-package undertilde, fileformat change, fixed the remaining...
[lyx.git] / src / LyX.cpp
index 8321251751a7d22457f2555ac02c49546010926d..05cca99c7838fbdd1dbd3c122e92a75131ff0d62 100644 (file)
@@ -48,8 +48,6 @@
 #include "frontends/alert.h"
 #include "frontends/Application.h"
 
-#include "graphics/Previews.h"
-
 #include "support/lassert.h"
 #include "support/debug.h"
 #include "support/environment.h"
@@ -193,8 +191,6 @@ struct LyX::Impl
        /// the parsed command line batch command if any
        vector<string> batch_commands;
 
-       ///
-       graphics::Previews preview_;
        ///
        SpellChecker * spell_checker_;
        ///
@@ -290,8 +286,7 @@ int LyX::exec(int & argc, char * argv[])
 {
        // Minimal setting of locale before parsing command line
        try {
-               init_package(os::utf8_argv(0), string(), string(),
-                       top_build_dir_is_one_level_up);
+               init_package(os::utf8_argv(0), string(), string());
                // we do not get to this point when init_package throws an exception
                locale_init();
        } catch (ExceptionMessage const & message) {
@@ -303,9 +298,7 @@ int LyX::exec(int & argc, char * argv[])
        easyParse(argc, argv);
 
        try {
-               init_package(os::utf8_argv(0),
-                       cl_system_support, cl_user_support,
-                       top_build_dir_is_one_level_up);
+               init_package(os::utf8_argv(0), cl_system_support, cl_user_support);
        } catch (ExceptionMessage const & message) {
                if (message.type_ == ErrorException) {
                        Alert::error(message.title_, message.details_);
@@ -1383,13 +1376,6 @@ Messages const & getGuiMessages()
 }
 
 
-graphics::Previews & thePreviews()
-{
-       LASSERT(singleton_, /**/);
-       return singleton_->pimpl_->preview_;
-}
-
-
 Session & theSession()
 {
        LASSERT(singleton_, /**/);