Mercurial > pidgin.yaz
annotate src/debug.c @ 6639:1b91cb6be4c3
[gaim-migrate @ 7164]
Ambrose C. LI (acli) updated the zh_TW.po and writes of the fi.po that:
" Changes from previous submission:
Safe changes:
- Corrected some mistakes that I made in the last
submission
- Sync'd to anon cvs as of around 22:00 EDT
- More strings pulled out from the old po file
- More strings pulled out from non-gaim po files
- Other strings obtained by relatively trivial editing
Unsafe changes:
- Some strings previously marked fuzzy has the fuzzy
removed
- Some new strings obtained by relatively non-trivial
editing
I think I have made enough of the unsafe changes that I
should change Last-Translator to myself. Even if I
don't make any more changes, I think it's not right if
I don't say in the file that I'm the person who has
made all the mistakes in the file"
also Matias Vidal (matiasv) fixed plugin loading for hpux (see bug 720868)
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 27 Aug 2003 23:03:03 +0000 |
parents | 565339a6eb86 |
children | acc4376ce062 |
rev | line source |
---|---|
5212 | 1 /** |
2 * @file debug.c Debug API | |
3 * @ingroup core | |
4 * | |
5 * gaim | |
6 * | |
7 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org> | |
6483
565339a6eb86
[gaim-migrate @ 6997]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
8 * |
5212 | 9 * This program is free software; you can redistribute it and/or modify |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 */ | |
23 #include "debug.h" | |
24 #include <stdlib.h> | |
25 #include <glib.h> | |
26 | |
27 static GaimDebugUiOps *debug_ui_ops = NULL; | |
28 | |
29 void | |
30 gaim_debug_vargs(GaimDebugLevel level, const char *category, | |
31 const char *format, va_list args) | |
32 { | |
33 GaimDebugUiOps *ops; | |
34 | |
35 g_return_if_fail(level != GAIM_DEBUG_ALL); | |
36 g_return_if_fail(format != NULL); | |
37 | |
38 ops = gaim_get_debug_ui_ops(); | |
39 | |
40 if (ops != NULL && ops->print != NULL) | |
41 ops->print(level, category, format, args); | |
42 } | |
43 | |
44 void | |
45 gaim_debug(GaimDebugLevel level, const char *category, | |
46 const char *format, ...) | |
47 { | |
48 va_list args; | |
49 | |
50 g_return_if_fail(level != GAIM_DEBUG_ALL); | |
51 g_return_if_fail(format != NULL); | |
52 | |
53 va_start(args, format); | |
54 gaim_debug_vargs(level, category, format, args); | |
55 va_end(args); | |
56 } | |
57 | |
58 void | |
59 gaim_set_debug_ui_ops(GaimDebugUiOps *ops) | |
60 { | |
61 debug_ui_ops = ops; | |
62 } | |
63 | |
64 GaimDebugUiOps * | |
65 gaim_get_debug_ui_ops(void) | |
66 { | |
67 return debug_ui_ops; | |
68 } |