diff options
-rw-r--r-- | src/pwgui/main.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pwgui/main.cpp b/src/pwgui/main.cpp index 5dd5a07..b916259 100644 --- a/src/pwgui/main.cpp +++ b/src/pwgui/main.cpp @@ -3,6 +3,7 @@ #include <QApplication> #include <QMessageBox> #include <QDesktopWidget> +#include <QLayout> #include <cups/backend.h> #include <fcntl.h> #include <sys/stat.h> @@ -514,7 +515,7 @@ static int helper_cupsError(const int code) { switch (code) { case CUPS_BACKEND_OK: - helper_messageBox("CUPS", "Der Druckauftrag wurde erfolgreich an den print server übermittelt", false); + helper_messageBox("CUPS", "Der Druckauftrag wurde erfolgreich an den Druckserver übermittelt", false); return CUPS_BACKEND_OK; case CUPS_BACKEND_FAILED: @@ -586,8 +587,9 @@ static void helper_messageBox(const char *caption, const char *text, const bool msgBox.setIcon(QMessageBox::Information); } QRect desktopRect = QApplication::desktop()->screenGeometry(); - msgBox.move(desktopRect.width()/2-msgBox.width()/2, - desktopRect.height()/2-msgBox.height()/2); + QSize msgBoxSize = msgBox.sizeHint(); + msgBox.move(desktopRect.width()/2-msgBoxSize.width()/2, + desktopRect.height()/2-msgBoxSize.height()/2); msgBox.show(); msgBox.showNormal(); msgBox.raise(); |