diff --git a/ChangeLog b/ChangeLog index 86056ac00e..4b98df138b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-03-16 Shirasaki Yasuhiro + + * app/text_tool.c: added missing argument for error message. + 2000-03-15 Sven Neumann Michael Natterer diff --git a/app/text_tool.c b/app/text_tool.c index fc6425c16e..96e4c03dc3 100644 --- a/app/text_tool.c +++ b/app/text_tool.c @@ -600,7 +600,7 @@ text_render (GimpImage *gimage, font = gdk_font_load (fontname); if (!font) { - g_message (_("Font '%s' not found.")); + g_message (_("Font '%s' not found."), fontname); return NULL; } xfs = GDK_FONT_XFONT(font); diff --git a/app/tools/gimptexttool.c b/app/tools/gimptexttool.c index fc6425c16e..96e4c03dc3 100644 --- a/app/tools/gimptexttool.c +++ b/app/tools/gimptexttool.c @@ -600,7 +600,7 @@ text_render (GimpImage *gimage, font = gdk_font_load (fontname); if (!font) { - g_message (_("Font '%s' not found.")); + g_message (_("Font '%s' not found."), fontname); return NULL; } xfs = GDK_FONT_XFONT(font); diff --git a/app/tools/text_tool.c b/app/tools/text_tool.c index fc6425c16e..96e4c03dc3 100644 --- a/app/tools/text_tool.c +++ b/app/tools/text_tool.c @@ -600,7 +600,7 @@ text_render (GimpImage *gimage, font = gdk_font_load (fontname); if (!font) { - g_message (_("Font '%s' not found.")); + g_message (_("Font '%s' not found."), fontname); return NULL; } xfs = GDK_FONT_XFONT(font);