mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
whitespace
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19453 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ed73dc21ad
commit
e2a5dd2fc6
@ -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(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(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)));
|
||||
}
|
||||
|
||||
|
||||
|
@ -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)));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user