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
path: root/source
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-04-13 22:00:06 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-04-13 22:00:45 +0300
commit057c7c6fabdb6106079fe4af90721c79c5c59142 (patch)
tree26f365cfe4834a2e46b6ee0add285bef1b41ed2c /source
parent86fe894f8624fe64c5acde94de0e5d14e8803a55 (diff)
Cleanup: do not use _reportf() when not doing any string formating!
Also usual minor i18n messages stuff...
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_color.c2
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c2
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
-rw-r--r--source/blender/windowmanager/intern/wm_stereo.c9
4 files changed, 7 insertions, 8 deletions
diff --git a/source/blender/makesrna/intern/rna_color.c b/source/blender/makesrna/intern/rna_color.c
index 0c871317d04..8ea67a34fbb 100644
--- a/source/blender/makesrna/intern/rna_color.c
+++ b/source/blender/makesrna/intern/rna_color.c
@@ -673,7 +673,7 @@ static void rna_ColorManagement_update(Main *UNUSED(bmain), Scene *UNUSED(scene)
static float rna_CurveMap_evaluateF(struct CurveMap *cuma, ReportList *reports, float value)
{
if (!cuma->table) {
- BKE_reportf(reports, RPT_ERROR, "CurveMap table not initialized, call initialize() on CurveMapping owner of the CurveMap");
+ BKE_report(reports, RPT_ERROR, "CurveMap table not initialized, call initialize() on CurveMapping owner of the CurveMap");
return 0.0f;
}
return curvemap_evaluateF(cuma, value);
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 075b139c6c4..da77b9ee6ea 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -1578,7 +1578,7 @@ static bNodeSocket *rna_Node_outputs_new(ID *id, bNode *node, ReportList *report
sock = nodeAddSocket(ntree, node, SOCK_OUT, type, identifier, name);
if (sock == NULL) {
- BKE_reportf(reports, RPT_ERROR, "Unable to create socket");
+ BKE_report(reports, RPT_ERROR, "Unable to create socket");
}
else {
ntreeUpdateTree(G.main, ntree);
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index f93cdc5715d..ee77bccc340 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -1907,7 +1907,7 @@ static void rna_FreestyleSettings_module_remove(
if (module->script)
BKE_reportf(reports, RPT_ERROR, "Style module '%s' could not be removed", module->script->id.name + 2);
else
- BKE_reportf(reports, RPT_ERROR, "Style module could not be removed");
+ BKE_report(reports, RPT_ERROR, "Style module could not be removed");
return;
}
diff --git a/source/blender/windowmanager/intern/wm_stereo.c b/source/blender/windowmanager/intern/wm_stereo.c
index c619b2ed727..328223645bc 100644
--- a/source/blender/windowmanager/intern/wm_stereo.c
+++ b/source/blender/windowmanager/intern/wm_stereo.c
@@ -464,8 +464,7 @@ int wm_stereo3d_set_exec(bContext *C, wmOperator *op)
/* pageflip requires a new window to be created with the proper OS flags */
if (win->stereo3d_format->display_mode == S3D_DISPLAY_PAGEFLIP) {
if (wm_stereo3d_quadbuffer_supported() == false) {
- BKE_reportf(op->reports, RPT_ERROR,
- "Quadbuffer not supported by the system");
+ BKE_report(op->reports, RPT_ERROR, "Quad-buffer not supported by the system");
win->stereo3d_format->display_mode = display_mode;
return OPERATOR_CANCELLED;
}
@@ -474,8 +473,8 @@ int wm_stereo3d_set_exec(bContext *C, wmOperator *op)
win = wm->windows.last;
}
else {
- BKE_reportf(op->reports, RPT_ERROR,
- "Fail to create a window compatible with time sequential (page-flip) display method");
+ BKE_report(op->reports, RPT_ERROR,
+ "Fail to create a window compatible with time sequential (page-flip) display method");
win->stereo3d_format->display_mode = display_mode;
return OPERATOR_CANCELLED;
}
@@ -483,7 +482,7 @@ int wm_stereo3d_set_exec(bContext *C, wmOperator *op)
if (wm_stereo3d_is_fullscreen_required(win->stereo3d_format->display_mode)) {
if (!is_fullscreen) {
- BKE_reportf(op->reports, RPT_INFO, "Stereo 3D Mode requires the window to be fullscreen");
+ BKE_report(op->reports, RPT_INFO, "Stereo 3D Mode requires the window to be fullscreen");
}
}