diff options
author | GiWoong Kim <giwoong.kim@samsung.com> | 2015-08-07 15:48:34 +0900 |
---|---|---|
committer | SeokYeon Hwang <syeon.hwang@samsung.com> | 2015-08-09 17:29:23 +0900 |
commit | ba6c3717519ea3659f939824ee98405b4d50db44 (patch) | |
tree | 13df9635269fca681ddd761e933ab09403323277 /tizen/src/ui/mainwindow.cpp | |
parent | b9313bdabb427869c3a3e7e610e5061fb4ad152d (diff) | |
download | qemu-ba6c3717519ea3659f939824ee98405b4d50db44.tar.gz qemu-ba6c3717519ea3659f939824ee98405b4d50db44.tar.bz2 qemu-ba6c3717519ea3659f939824ee98405b4d50db44.zip |
ui: followed mandatory design guide
- add minimize button to Screen Shot window
- replace close message box's icon and buttons
Change-Id: I9493ebfae843f50518ac508e42cdc1856a90a3f4
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
Diffstat (limited to 'tizen/src/ui/mainwindow.cpp')
-rw-r--r-- | tizen/src/ui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tizen/src/ui/mainwindow.cpp b/tizen/src/ui/mainwindow.cpp index 72e228f335..e737283514 100644 --- a/tizen/src/ui/mainwindow.cpp +++ b/tizen/src/ui/mainwindow.cpp @@ -519,7 +519,7 @@ MainWindow::~MainWindow() /* override */ void MainWindow::closeEvent(QCloseEvent *event) { - int result = QMessageBox::warning(this, EMULATOR_TITLE, + int result = QMessageBox::question(this, EMULATOR_TITLE, MSG_CLOSE_POPUP, QMessageBox::Yes | QMessageBox::Default, QMessageBox::No); if (result == QMessageBox::Yes) { |