[gimp] app: turn a g_warning() into a g_return_if_fail()
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: turn a g_warning() into a g_return_if_fail()
- Date: Thu, 22 Apr 2010 15:17:27 +0000 (UTC)
commit 8d3a5099f875568fd2cc7409a669f4ca450e895d
Author: Michael Natterer <mitch gimp org>
Date: Thu Apr 22 17:17:02 2010 +0200
app: turn a g_warning() into a g_return_if_fail()
app/tools/gimpdrawtool.c | 24 +++++++++---------------
1 files changed, 9 insertions(+), 15 deletions(-)
---
diff --git a/app/tools/gimpdrawtool.c b/app/tools/gimpdrawtool.c
index bd450b0..57be3a6 100644
--- a/app/tools/gimpdrawtool.c
+++ b/app/tools/gimpdrawtool.c
@@ -266,26 +266,20 @@ void
gimp_draw_tool_resume (GimpDrawTool *draw_tool)
{
g_return_if_fail (GIMP_IS_DRAW_TOOL (draw_tool));
+ g_return_if_fail (draw_tool->paused_count > 0);
- if (draw_tool->paused_count > 0)
- {
- draw_tool->paused_count--;
+ draw_tool->paused_count--;
#ifdef USE_TIMEOUT
- if (draw_tool->paused_count == 0 && ! draw_tool->draw_timeout)
- draw_tool->draw_timeout =
- gdk_threads_add_timeout_full (G_PRIORITY_HIGH_IDLE,
- DRAW_TIMEOUT,
- (GSourceFunc) gimp_draw_tool_draw_timeout,
- draw_tool, NULL);
+ if (draw_tool->paused_count == 0 && ! draw_tool->draw_timeout)
+ draw_tool->draw_timeout =
+ gdk_threads_add_timeout_full (G_PRIORITY_HIGH_IDLE,
+ DRAW_TIMEOUT,
+ (GSourceFunc) gimp_draw_tool_draw_timeout,
+ draw_tool, NULL);
#else
- gimp_draw_tool_draw (draw_tool);
+ gimp_draw_tool_draw (draw_tool);
#endif
- }
- else
- {
- g_warning ("%s: called with draw_tool->paused_count == 0", G_STRFUNC);
- }
}
gboolean
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]