]> git.lyx.org Git - features.git/commitdiff
whitespace
authorAndré Pönitz <poenitz@gmx.net>
Sun, 12 Aug 2007 12:51:00 +0000 (12:51 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Sun, 12 Aug 2007 12:51:00 +0000 (12:51 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19453 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QLPrintDialog.cpp
src/frontends/qt4/QTabularCreate.cpp

index 85d8126752f8559bad24c5a5ceee29a43aea9c72..8c8cefe99b66098cb74a5b744cae6e70b507c288 100644 (file)
@@ -29,26 +29,30 @@ QLPrintDialog::QLPrintDialog(QPrint * f)
 {
        setupUi(this);
 
-       connect(printPB, SIGNAL(clicked()),
-               form_, SLOT(slotOK()));
-       connect(closePB, SIGNAL(clicked()),
-               form_, SLOT(slotClose()));
-
-    connect( copiesSB, SIGNAL( valueChanged(int) ), this, SLOT( copiesChanged(int) ) );
-    connect( printerED, SIGNAL( textChanged(const QString&) ), this, SLOT( printerChanged() ) );
-    connect( fileED, SIGNAL( textChanged(const QString&) ), this, SLOT( fileChanged() ) );
-    connect( browsePB, SIGNAL( clicked() ), this, SLOT( browseClicked() ) );
-    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&) ), this, SLOT( pagerangeChanged() ) );
-    connect( fromED, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) );
-    connect( toED, SIGNAL( textChanged(const QString&) ), this, SLOT( pagerangeChanged() ) );
-    connect( toED, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) );
-    connect( fileRB, SIGNAL( clicked() ), this, SLOT( change_adaptor() ) );
-    connect( printerRB, SIGNAL( clicked() ), this, SLOT( change_adaptor() ) );
-    connect( rangeRB, SIGNAL( toggled(bool) ), fromED, SLOT( setEnabled(bool) ) );
-    connect( rangeRB, SIGNAL( toggled(bool) ), toED, SLOT( setEnabled(bool) ) );
+       connect(printPB, SIGNAL(clicked()), form_, SLOT(slotOK()));
+       connect(closePB, SIGNAL(clicked()), form_, SLOT(slotClose()));
+
+       connect(copiesSB, SIGNAL(valueChanged(int)), this, SLOT(copiesChanged(int)));
+       connect(printerED, SIGNAL(textChanged(const QString&)),
+               this, SLOT(printerChanged()));
+       connect(fileED, SIGNAL(textChanged(const QString&)),
+               this, SLOT(fileChanged() ));
+       connect(browsePB, SIGNAL(clicked()), this, SLOT(browseClicked()));
+       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&)),
+               this, SLOT(pagerangeChanged()));
+       connect(fromED, SIGNAL(textChanged(const QString&)),
+               this, SLOT(change_adaptor()));
+       connect(toED, SIGNAL(textChanged(const QString&)),
+               this, SLOT(pagerangeChanged()));
+       connect(toED, SIGNAL(textChanged(const QString&)),
+               this, SLOT(change_adaptor()));
+       connect(fileRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
+       connect(printerRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
+       connect(rangeRB, SIGNAL(toggled(bool)), fromED, SLOT(setEnabled(bool)));
+       connect(rangeRB, SIGNAL(toggled(bool)), toED, SLOT(setEnabled(bool)));
 }
 
 
index 7baee2c7606d7f7d36938072708732d688c40b93..b888dd667726a524545d9d140fdac1446aeb6717 100644 (file)
@@ -36,13 +36,12 @@ QTabularCreateDialog::QTabularCreateDialog(QTabularCreate * form)
        rowsSB->setValue(5);
        columnsSB->setValue(5);
 
-       connect(okPB, SIGNAL(clicked()),
-               form_, SLOT(slotOK()));
-       connect(closePB, SIGNAL(clicked()),
-               form_, SLOT(slotClose()));
-    connect(rowsSB, SIGNAL(valueChanged(int)),
-               this, SLOT( rowsChanged(int)));
-    connect(columnsSB, SIGNAL(valueChanged(int)),
+       connect(okPB, SIGNAL(clicked()), form_, SLOT(slotOK()));
+       connect(closePB, SIGNAL(clicked()), form_, SLOT(slotClose()));
+
+       connect(rowsSB, SIGNAL(valueChanged(int)),
+               this, SLOT(rowsChanged(int)));
+       connect(columnsSB, SIGNAL(valueChanged(int)),
                this, SLOT(columnsChanged(int)));
 }