mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-24 09:58:54 +02:00
fix indentation (GConvertError): generic error is conventionally called
2000-09-28 Havoc Pennington <hp@pobox.com> * glib.h (GThreadPriority): fix indentation (GConvertError): generic error is conventionally called _FAILED rather than _OTHER, at least at the moment, according to GError docs in docs/reference. * gconvert.c: s/_OTHER/_FAILED/
This commit is contained in:
committed by
Havoc Pennington
parent
b4f692999f
commit
349eaa6a25
10
glib.h
10
glib.h
@@ -3079,10 +3079,10 @@ typedef void (*GThreadFunc) (gpointer value);
|
||||
|
||||
typedef enum
|
||||
{
|
||||
G_THREAD_PRIORITY_LOW,
|
||||
G_THREAD_PRIORITY_NORMAL,
|
||||
G_THREAD_PRIORITY_HIGH,
|
||||
G_THREAD_PRIORITY_URGENT
|
||||
G_THREAD_PRIORITY_LOW,
|
||||
G_THREAD_PRIORITY_NORMAL,
|
||||
G_THREAD_PRIORITY_HIGH,
|
||||
G_THREAD_PRIORITY_URGENT
|
||||
} GThreadPriority;
|
||||
|
||||
typedef struct _GThread GThread;
|
||||
@@ -3442,7 +3442,7 @@ typedef enum
|
||||
{
|
||||
G_CONVERT_ERROR_NO_CONVERSION,
|
||||
G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
|
||||
G_CONVERT_ERROR_OTHER
|
||||
G_CONVERT_ERROR_FAILED
|
||||
} GConvertError;
|
||||
|
||||
#define G_CONVERT_ERROR g_convert_error_quark()
|
||||
|
Reference in New Issue
Block a user