summaryrefslogtreecommitdiff
path: root/glib/src/keyfile.ccg
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2007-12-28 12:22:13 +0000
committerMurray Cumming <murrayc@src.gnome.org>2007-12-28 12:22:13 +0000
commitd8aaa79cecd3c032e78ce189c05cfd1f3ed2e817 (patch)
tree67e393cb919b12c324b34e096b9491003b9a0e15 /glib/src/keyfile.ccg
parent43e32c9387ebf330941a4e18e9c2e1a23bd14e8f (diff)
downloadglibmm-d8aaa79cecd3c032e78ce189c05cfd1f3ed2e817.tar.gz
Added @newin2p16 to compose() and format() documentation.
2007-12-28 Murray Cumming <murrayc@murrayc.com> * glib/glibmm/ustring.h: Added @newin2p16 to compose() and format() documentation. * glib/src/keyfile.ccg: * glib/src/keyfile.hg: set_double_list(): Make the ArrayHandle argument const. This could not have been used before. svn path=/trunk/; revision=481
Diffstat (limited to 'glib/src/keyfile.ccg')
-rw-r--r--glib/src/keyfile.ccg2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/src/keyfile.ccg b/glib/src/keyfile.ccg
index ec1ad690..da3f8216 100644
--- a/glib/src/keyfile.ccg
+++ b/glib/src/keyfile.ccg
@@ -273,7 +273,7 @@ void KeyFile::set_integer_list(const Glib::ustring& group_name, const Glib::ustr
}
void KeyFile::set_double_list(const Glib::ustring& group_name, const Glib::ustring& key,
- Glib::ArrayHandle<double>& list)
+ const Glib::ArrayHandle<double>& list)
{
g_key_file_set_double_list(gobj(), group_name.c_str(), key.c_str(),
const_cast<double*>(list.data()), list.size());