added missing argument for error message.

* app/text_tool.c: added missing argument for error message.

-- yasuhiro
This commit is contained in:
SHIRASAKI Yasuhiro
2000-03-16 10:03:01 +00:00
parent b701ce1e10
commit 22634f1990
4 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2000-03-16 Shirasaki Yasuhiro <yasuhiro@gnome.gr.jp>
* app/text_tool.c: added missing argument for error message.
2000-03-15 Sven Neumann <sven@gimp.org>
Michael Natterer <mitch@gimp.org>

View File

@ -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);

View File

@ -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);

View File

@ -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);