]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiPrint.cpp
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / GuiPrint.cpp
index af74910ff14bfdffb6c30eb5280b9e58e3ca9f93..b0fd8718aa2233ea73d627a9b7b921a27f3eae8a 100644 (file)
@@ -24,7 +24,6 @@
 
 #include "support/convert.h"
 #include "support/filetools.h"
-#include "support/gettext.h"
 #include "support/os.h"
 
 #include <QLineEdit>
@@ -57,13 +56,13 @@ GuiPrint::GuiPrint(GuiView & lv)
        connect(allRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
        connect(reverseCB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
        connect(collateCB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
-       connect(fromED, SIGNAL(textChanged(const QString&)),
+       connect(fromED, SIGNAL(textChanged(QString)),
                this, SLOT(pagerangeChanged()));
-       connect(fromED, SIGNAL(textChanged(const QString&)),
+       connect(fromED, SIGNAL(textChanged(QString)),
                this, SLOT(change_adaptor()));
-       connect(toED, SIGNAL(textChanged(const QString&)),
+       connect(toED, SIGNAL(textChanged(QString)),
                this, SLOT(pagerangeChanged()));
-       connect(toED, SIGNAL(textChanged(const QString&)),
+       connect(toED, SIGNAL(textChanged(QString)),
                this, SLOT(change_adaptor()));
        connect(fileRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
        connect(printerRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
@@ -85,7 +84,7 @@ void GuiPrint::change_adaptor()
 void GuiPrint::browseClicked()
 {
        QString file =
-               browseRelFile(QString(), bufferFilepath(), qt_("Print to file"),
+               browseRelToParent(QString(), bufferFilePath(), qt_("Print to file"),
                             QStringList(qt_("PostScript files (*.ps)")), true);
        if (!file.isEmpty()) {
                fileED->setText(file);
@@ -145,9 +144,9 @@ void GuiPrint::updateContents()
 
        collateCB->setChecked(params_.sorted_copies);
 
-       if (params_.all_pages) {
+       if (params_.all_pages)
                allRB->setChecked(true);
-       else {
+       else {
                rangeRB->setChecked(true);
                fromED->setText(QString::number(params_.from_page));
                toED->setText(QString::number(params_.to_page));
@@ -175,10 +174,9 @@ void GuiPrint::applyView()
 bool GuiPrint::initialiseParams(string const &)
 {
        /// get global printer parameters
-       string const name = support::changeExtension(buffer().absFileName(),
-                                       lyxrc.print_file_extension);
        params_ = PrinterParams();
-       params_.file_name = name;
+       params_.file_name = support::changeExtension(buffer().absFileName(),
+                                       lyxrc.print_file_extension);
 
        setButtonsValid(true); // so that the user can press Ok
        return true;
@@ -254,4 +252,4 @@ Dialog * createGuiPrint(GuiView & lv) { return new GuiPrint(lv); }
 } // namespace frontend
 } // namespace lyx
 
-#include "GuiPrint_moc.cpp"
+#include "moc_GuiPrint.cpp"