summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@src.gnome.org>2007-12-28 13:31:07 +0000
committerMurray Cumming <murrayc@src.gnome.org>2007-12-28 13:31:07 +0000
commit68b0880716d7df7b567dfae19cb76f3d54918f0e (patch)
treee2a540ff485254b29be46fcfdaf2dafcaa9d0d4e /NEWS
parent05c44376a9f46cf21bc8b75413c72ca15857efad (diff)
downloadglibmm-68b0880716d7df7b567dfae19cb76f3d54918f0e.tar.gz
Updated NEWS
svn path=/trunk/; revision=484
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS11
1 files changed, 11 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 808d675d..8ff34dd7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,22 @@
2.15.0:
+
+* ustring:
+ - Added compose() to substitute placeholders in a format string, as an
+ equivalent to sprintf(), to help internationalization/translation.
+ - Added format() to simplify the common task of converting a value
+ (such as a number) to a string, with optional stream formatting
+ parmatters. This uses the regular C++ stream API in its implementation.
+ (Daniel Elstner, Openismus)
* Glib::RefPtr: Deprecate clear(), replacing it with
reset(), because people often do treemodel.clear() when they
mean treemodel->clear(). reset() is consistent with std::auto_ptr<>.
But the method is still there so the compiler still can't help
you to avoid the mistake.
(Murray Cumming)
+* KeyFile: set_integer_list(), set_boolean_list(), set_double_list()
+ actually work now without crashing.
+ (Daniel Elstner, Openismus)
* gmmproc:
- Refuse to generate a wrapper for a construct-only
property which is also write-only, and display a warning.