diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-05-22 14:29:30 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-05-22 14:29:30 +0200 |
commit | d0c1b9bcbffdfa414e722cd716098de409884746 (patch) | |
tree | ff555962b46ef9286b7fe0e6919f9123d6d085e9 /src/mainwindow.cpp | |
parent | FullScreen shortcuts: F11 && CTRL + SHIFT + F (diff) | |
download | rekonq-d0c1b9bcbffdfa414e722cd716098de409884746.tar.xz |
Removed QDialog instances
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 3ebd3742..4f41652e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -572,7 +572,7 @@ void MainWindow::printRequested(QWebFrame *frame) QPrinter printer; QPointer<QPrintDialog> dialog = KdePrint::createPrintDialog(&printer, this); - if (dialog->exec() == QDialog::Accepted) + if (dialog->exec() == KDialog::Ok) { frame->print(&printer); } |