Commit Graph

7008 Commits

Author SHA1 Message Date
Matthias Clasen
9203da305b some doc updates 2009-09-22 12:36:50 -04:00
Matthias Clasen
3413e758eb Updates 2009-09-22 10:37:05 -04:00
Matthias Clasen
74326a3865 Set version to 2.22.0 2009-09-22 09:41:04 -04:00
Matej Urbančič
01ccc9e3ba Updated Slovenian translation 2009-09-22 12:21:02 +02:00
Matej Urbančič
1c46514d5e Updated Slovenian translation 2009-09-22 12:15:38 +02:00
Mart Raudsepp
c755a7fd11 gio: Fix some typos in G*AppInfo documentation 2009-09-22 11:22:44 +03:00
Mart Raudsepp
924f1bc528 Accept -? for glib-mkenums.
Commit 789e260638 tried to add support for -?, but there is a typo
and instead -h was added when already present instead of -? for one
of the cases.
It works without this corrections, because all unrecognized options
trigger usage showing as well, but this is more correct.

This was bug 556706 originally.
2009-09-22 11:22:44 +03:00
Mart Raudsepp
6c061da2a2 gio: Fix a Since tag to actually show up in new API of 2.20 indeces
Typo made in e05426062
2009-09-22 11:22:44 +03:00
Nguyễn Thái Ngọc Duy
7feb4c3631 po/vi.po: fix type "thoạt" 2009-09-22 09:59:13 +07:00
Alexander Larsson
a830fbd62c Document new gdb macros 2009-09-21 15:39:00 +02:00
Alexander Larsson
42320706c4 Add gforeach gdb command 2009-09-21 15:39:00 +02:00
Alexander Larsson
2b8943237f Add pretty printer for hashtables 2009-09-21 15:39:00 +02:00
Alexander Larsson
2e8768d9a5 Add pretty printing for GList and GSList 2009-09-21 15:39:00 +02:00
Alexander Larsson
efe9169234 Initial support for gdb python macros
This includes support for gobject pointer pretty printing and
signal frame compression in backtraces.

https://bugzilla.gnome.org/show_bug.cgi?id=595619
2009-09-21 15:39:00 +02:00
Chao-Hsiung Liao
18af48ba9a Updated Traditional Chinese translation(Hong Kong and Taiwan) 2009-09-21 20:54:02 +08:00
Petr Kovar
652f47fd2a Updated Czech translation 2009-09-20 22:26:17 +02:00
Ani
5b30a46da4 Updated Malayalam Translations 2009-09-20 21:04:45 +05:30
Gil Forcada
7a010ac2d4 Updated Catalan translation 2009-09-19 18:04:56 +02:00
Paolo Borelli
80f66b1141 Fix build with srcdir != builddir, bug #594597 2009-09-19 10:22:33 +02:00
Matthias Clasen
8b3853b8a1 Reduce false positives in static analysis
Tools like clang fail to recognize that stanzas like
g_return_if_fail (GTK_IS_FOO (w)) guarantee w != NULL. By minimally
rewriting the type-checking macros, we can avoid these false positives.
2009-09-18 19:20:06 -04:00
Matthias Clasen
53fc10d269 Fix a lot of clang complaints
Mostly dead assignments.
2009-09-18 19:20:06 -04:00
Dumitru Mișu Moldovan
04d632ccf5 Updated Romanian translation 2009-09-18 00:17:32 +03:00
Miloš Popović
3bfba7924c Updated Serbian translation 2009-09-17 17:58:52 +00:00
krishnababu k
dd7f660fb7 Updated Telugu Translation 2009-09-17 21:18:57 +05:30
ifelix
256662ddba Updated Tamil Translations 2009-09-17 15:50:19 +05:30
Fran Diéguez
78c548b506 UPdated Galician Translation 2009-09-16 16:15:05 +02:00
Runa Bhattacharjee
d88b6a3d60 Updated Bengali India Translations 2009-09-15 18:31:49 +05:30
Manoj Kumar Giri
011592af55 Upadted Oriya Translation 2009-09-15 16:22:41 +05:30
Theppitak Karoonboonyanan
ddc85a8b02 Updated Thai translation. 2009-09-15 14:29:36 +07:00
Amitakhya Phukan
3a240a7f71 Updating Assamese translations. 2009-09-15 12:48:50 +05:30
Kjartan Maraas
ef5e66c330 Update Norwegian bokmål translation. 2009-09-14 00:16:51 +02:00
Aron Xu
220bde833a Updated Simplified Chinese translation. 2009-09-13 15:09:29 +08:00
A S Alam
7e514b6efa Updating Translation for Punjabi 2009-09-13 08:58:57 +05:30
Ask H. Larsen
e1957bd71c Updated Danish translation 2009-09-13 03:16:47 +02:00
Bruce Cowan
6366015dec Updated British English translation 2009-09-12 20:04:29 +01:00
Tommi Vainikainen
a92f10d712 Updated Finnish translation 2009-09-12 19:10:57 +03:00
Tor Lillqvist
410305255d Remove old crap for fetching the "build" directory from svn 2009-09-12 01:57:46 +03:00
Sjoerd Simons
8667317766 Fix GNetworkAddress skipping addresses when enumerating
g_network_address_address_enumerator_next_finish takes the first item of the
address list and moves the pointer to the next one, so we shouldn't do the same
in g_network_address_address_enumerator_next_async function

Fixes bug #593941
2009-09-11 15:25:34 +01:00
Richard Hughes
cdd04f36ca Make the error const for g_simple_async_result_set_from_error 2009-09-11 15:20:34 +01:00
James Hunt
11477609d1 g_socket_send_message() fails due to invalid sendmsg(2) params.
g_socket_send_message() and g_socket_send_to() fail with ENOBUFS or
EFAULT due to the fact that if no "address" argument is specified to
g_socket_send_message, when g_socket_send_message() calls sendmsg(2),
the 2nd parameter to sendmsg ("const struct msghdr *msg") contains
uninitialized values. The fix is simple - initialize msg.msg_name to
NULL and msg.msg_msg_namelen to 0.

https://bugzilla.gnome.org/show_bug.cgi?id=594759
2009-09-11 08:52:14 -04:00
Rajesh Ranjan
29baa5eebd hindi update by Rajesh Ranjan 2009-09-11 16:00:29 +05:30
Ani
9dc9b39284 Updated Malayalam Translations 2009-09-11 12:18:50 +05:30
Maxim V. Dziumanenko
c3bbec5213 Updated Ukrainian translation 2009-09-11 01:48:56 +03:00
Christian Dywan
278ac0a45d Bug 579050 Allow making selected critical and warning messages non-fatal
Implement g_test_log_set_fatal_handler which is a function similar to
g_log_set_default_handler but for use in unit tests where certain
errors have to be ignored because it is not possible to fix or avoid
them otherwise. A unit test is added.
2009-09-10 16:45:49 +02:00
Shankar Prasad
4b1217b7e0 Updated Kannada(kn) translation 2009-09-10 12:26:13 +05:30
Kostas Papadimas
664dd25665 Updated Greek translation. 2009-09-09 18:38:12 +03:00
Sweta Kothari
593cd7a683 Updated Gujarati Translations 2009-09-09 16:54:43 +05:30
Dan Winship
f393e80587 Clarify g_ptr_array_set_size() docs re: free_func 2009-09-08 11:19:13 -04:00
Alexander Shopov
eadd2ce7ff Updated Bulgarian translation 2009-09-08 07:41:28 +03:00
Dan Winship
bc1dd5cf11 Call element_free_func when shrinking array with g_ptr_array_set_size 2009-09-07 12:35:51 -04:00