remove _() translation from ObjectTypeLabel()

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8575 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2003-06-11 16:35:54 +00:00
parent c63cd4927c
commit 7453aa9e94

View File

@ -28,9 +28,8 @@
#include <glib.h>
#include "messages.h"
#include "gnc-engine-util.h"
#include "gncObject.h"
#include "gncObjectP.h"
static gboolean object_is_initialized = FALSE;
@ -147,7 +146,7 @@ const char * gncObjectGetTypeLabel (GNCIdTypeConst type_name)
obj = gncObjectLookup (type_name);
if (!obj) return NULL;
return _(obj->type_label);
return (obj->type_label);
}
static gboolean clear_table (gpointer key, gpointer value, gpointer user_data)