diff options
author | necoro <> | 2007-04-10 20:09:37 +0000 |
---|---|---|
committer | necoro <> | 2007-04-10 20:09:37 +0000 |
commit | 2d76b0ba7f6d0040c42e53df87f1ffbcbbe2cba1 (patch) | |
tree | 1afe0cf0ba9bf2316c007635eeabb4029568a1de /portato/gui/qt/dialogs.py | |
parent | f6b57b91d9af93a463b9549a6977feb48169c765 (diff) | |
download | portato-2d76b0ba7f6d0040c42e53df87f1ffbcbbe2cba1.tar.gz portato-2d76b0ba7f6d0040c42e53df87f1ffbcbbe2cba1.tar.bz2 portato-2d76b0ba7f6d0040c42e53df87f1ffbcbbe2cba1.zip |
Some more functionality for the Qt-Frontend (complete emerge)
Diffstat (limited to '')
-rw-r--r-- | portato/gui/qt/dialogs.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/portato/gui/qt/dialogs.py b/portato/gui/qt/dialogs.py index cf32439..7b5609e 100644 --- a/portato/gui/qt/dialogs.py +++ b/portato/gui/qt/dialogs.py @@ -36,3 +36,6 @@ def remove_deps_dialog (parent): def remove_queue_dialog (parent): return QMessageBox.question(parent, "Portato", "Do you really want to clear the whole queue?", QMessageBox.Yes | QMessageBox.No) + +def changed_flags_dialog (parent, what = "flags"): + return QMessageBox.information(parent, "Portato", "You have changed %s. Portato will write these changes into the appropriate files. Please backup them if you think it is necessairy." % what, QMessageBox.Ok) |