Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-02-09 05:28:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-09 05:32:20 +0400
commitb105d2ac7fbccd3998c9a01c297edc8ef9fce4cb (patch)
tree6f3127ea83327bfe7ad9550a60309191b9d610b3 /source/blender/windowmanager/WM_api.h
parent873f901e5a3d0d10c4cca579ce1f2aaed852b1e8 (diff)
UI: replace uiPupMenuOkee & uiPupMenuSaveOver with WM_operator_confirm
Diffstat (limited to 'source/blender/windowmanager/WM_api.h')
-rw-r--r--source/blender/windowmanager/WM_api.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h
index c9ed198d0cf..8a13decea42 100644
--- a/source/blender/windowmanager/WM_api.h
+++ b/source/blender/windowmanager/WM_api.h
@@ -205,7 +205,11 @@ int WM_operator_props_dialog_popup(struct bContext *C, struct wmOperator *op,
int WM_operator_redo_popup (struct bContext *C, struct wmOperator *op);
int WM_operator_ui_popup (struct bContext *C, struct wmOperator *op, int width, int height);
-int WM_operator_confirm_message(struct bContext *C, struct wmOperator *op, const char *message);
+int WM_operator_confirm_message_ex(struct bContext *C, struct wmOperator *op,
+ const char *title, const int icon,
+ const char *message);
+int WM_operator_confirm_message(struct bContext *C, struct wmOperator *op,
+ const char *message);
/* operator api */
void WM_operator_free (struct wmOperator *op);