]> git.lyx.org Git - features.git/commitdiff
more frontend cleanup
authorEdwin Leuven <e.leuven@gmail.com>
Sun, 9 Sep 2007 15:56:58 +0000 (15:56 +0000)
committerEdwin Leuven <e.leuven@gmail.com>
Sun, 9 Sep 2007 15:56:58 +0000 (15:56 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20172 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiExternal.cpp
src/frontends/qt4/GuiExternal.h
src/frontends/qt4/GuiGraphics.cpp
src/frontends/qt4/GuiGraphics.h
src/frontends/qt4/GuiInclude.cpp
src/frontends/qt4/GuiInclude.h
src/frontends/qt4/GuiNomencl.cpp
src/frontends/qt4/GuiNomencl.h
src/frontends/qt4/GuiRef.cpp
src/frontends/qt4/GuiRef.h
src/frontends/qt4/GuiSearch.cpp

index 5dbc5d659cd9359376d3fbe9b0d64698f43a2d7d..2f36bd5a0e56e139ead47690a7b77a541cca7f04 100644 (file)
@@ -190,12 +190,6 @@ ControlExternal & GuiExternalDialog::controller() const
 }
 
 
-void GuiExternalDialog::showView()
-{
-       QDialog::show();
-}
-
-
 bool GuiExternalDialog::activateAspectratio() const
 {
        if (widthUnitCO->currentIndex() == 0)
index 13ad241f8c4f331b0bd4710858392365cba03e0c..4864b45096dc3cd0d637a180627d033ef60dcb88 100644 (file)
@@ -42,7 +42,6 @@ private Q_SLOTS:
 
 private:
 public:
-       void showView();
        void closeEvent(QCloseEvent * e);
        //
        bool activateAspectratio() const;
index 684dbbdf152e305d2462c92d2e31ffc2eaa4d932..56f0121e8c67eb7cd9e361f29f55d222ed44278d 100644 (file)
@@ -217,12 +217,6 @@ ControlGraphics & GuiGraphicsDialog::controller() const
 }
 
 
-void GuiGraphicsDialog::showView()
-{
-       QDialog::show();
-}
-
-
 void GuiGraphicsDialog::change_adaptor()
 {
        changed();
index 100b31c316dcece2f65e54216282ca91b4f8ec25..e70e23c134dc1c8d9e8443e45f5b3de30c65e7eb 100644 (file)
@@ -30,7 +30,6 @@ class GuiGraphicsDialog : public GuiDialog, public Ui::GraphicsUi
 public:
        GuiGraphicsDialog(LyXView & lv);
        void setAutoText();
-       void showView();
 private Q_SLOTS:
        void change_adaptor();
        void change_bb();
index 991c04e7649570e90fd882d9b128d8b9d3c5823d..1ddcaad13ee9e5e970dc4e0c08de881dce1df308 100644 (file)
@@ -84,12 +84,6 @@ ControlInclude & GuiIncludeDialog::controller() const
 }
 
 
-void GuiIncludeDialog::showView()
-{
-       QDialog::show();
-}
-
-
 void GuiIncludeDialog::change_adaptor()
 {
        changed();
index a69c29923618c35b33a9f3ab960534c79e96d006..035da82d105c8a7f20963a6e427e6d20e24ad1b0 100644 (file)
@@ -43,8 +43,6 @@ private:
        ControlInclude & controller() const;
        ///
        void updateLists();
-       ///
-       void showView();
        /// validate listings parameters and return an error message, if any
        docstring validate_listings_params();
 
index c244354e8c1b6a848798d741b505efc64aa7bb42..d0024732538ff360f53352496db49ebb14f55454 100644 (file)
@@ -59,12 +59,6 @@ ControlCommand & GuiNomenclDialog::controller() const
 }
 
 
-void GuiNomenclDialog::showView()
-{
-       QDialog::show();
-}
-
-
 void GuiNomenclDialog::change_adaptor()
 {
        changed();
index 4a4dfcb2bc9f3889df3c80c5176602f23e8699ae..5c0405553eec1bc70ae38b8eaf3a5f6c68adb4e0 100644 (file)
@@ -33,8 +33,6 @@ private Q_SLOTS:
        void reject();
 
 private:
-       ///
-       void showView();
        ///
        void closeEvent(QCloseEvent * e);
        /// parent controller
index 53db6e2df6ee75f93266c2abbded64ea20856cfc..91979cb0c0737fafa6b91e2fe0b67ba39f0662a5 100644 (file)
@@ -94,12 +94,6 @@ ControlRef & GuiRefDialog::controller() const
 }
 
 
-void GuiRefDialog::showView()
-{
-       QDialog::show();
-}
-
-
 void GuiRefDialog::changed_adaptor()
 {
        changed();
index f918cfe7119da328b2eb425410812f37f9ff6d0b..50947fc16b84fa6b03229911b73c6cf391cfb30f 100644 (file)
@@ -41,8 +41,6 @@ private Q_SLOTS:
        void reset_dialog();
 
 private:
-       ///
-       void showView();
        ///
        void closeEvent(QCloseEvent * e);
        /// parent controller
index efde8aaa7976a6279e6b7c51ecc2932bd8b96274..89c6918aa020bfacfe4baeae0d3a3d06159d887b 100644 (file)
@@ -71,8 +71,8 @@ ControlSearch & GuiSearchDialog::controller() const
 
 void GuiSearchDialog::showView()
 {
-       QDialog::show();
        findCO->lineEdit()->setSelection(0, findCO->lineEdit()->text().length());
+       GuiDialog::showView();
 }