mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
gst/gsterror.c: Fix error message for GST_LIBRARY_ERROR_SETTINGS (feel free to come up with something better).
Original commit message from CVS: * gst/gsterror.c: (_gst_library_errors_init): Fix error message for GST_LIBRARY_ERROR_SETTINGS (feel free to come up with something better).
This commit is contained in:
parent
8365e24805
commit
f038abdb38
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-10-13 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/gsterror.c: (_gst_library_errors_init):
|
||||||
|
Fix error message for GST_LIBRARY_ERROR_SETTINGS (feel free to come
|
||||||
|
up with something better).
|
||||||
|
|
||||||
2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
|
2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* win32/vs6/libgstreamer.dsp:
|
* win32/vs6/libgstreamer.dsp:
|
||||||
|
|
|
@ -179,7 +179,7 @@ _gst_library_errors_init (void)
|
||||||
"to this error." FILE_A_BUG));
|
"to this error." FILE_A_BUG));
|
||||||
TABLE (t, LIBRARY, INIT, N_("Could not initialize supporting library."));
|
TABLE (t, LIBRARY, INIT, N_("Could not initialize supporting library."));
|
||||||
TABLE (t, LIBRARY, SHUTDOWN, N_("Could not close supporting library."));
|
TABLE (t, LIBRARY, SHUTDOWN, N_("Could not close supporting library."));
|
||||||
TABLE (t, LIBRARY, SETTINGS, N_("Could not close supporting library."));
|
TABLE (t, LIBRARY, SETTINGS, N_("Could not configure supporting library."));
|
||||||
|
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue