added missing argument for error message.
* app/text_tool.c: added missing argument for error message. -- yasuhiro
This commit is contained in:
@ -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>
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user