/branches/Version13x/Scribus/scribus/checkDocument.cpp |
---|
151,9 → 151,17 |
void CheckDocument::closeEvent(QCloseEvent *ce) |
{ |
emit closePal(false); |
ce->accept(); |
QDialog::closeEvent(ce); |
} |
void CheckDocument::keyPressEvent(QKeyEvent *ke) |
{ |
if (ke->key() == Key_Escape) |
close(); |
else |
QDialog::keyPressEvent(ke); |
} |
void CheckDocument::slotSelect(QListViewItem* ite) |
{ |
if (itemMap.contains(ite)) |
/branches/Version13x/Scribus/scribus/checkDocument.h |
---|
25,6 → 25,7 |
void clearErrorList(); |
void buildErrorList(ScribusDoc *doc); |
void closeEvent(QCloseEvent *ce); |
void keyPressEvent(QKeyEvent *ke); |
QComboBox* curCheckProfile; |
QLabel* textLabel1; |