~ubuntu-branches/debian/sid/atkmm1.6/sid

« back to all changes in this revision

Viewing changes to atk/src/value.ccg

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Simon McVittie, Michael Biebl
  • Date: 2015-09-28 13:19:44 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20150928131944-2a23bbzyd1w4riuf
Tags: 2.24.1-1
[ Simon McVittie ]
* debian/copyright: add some missing copyright holders

[ Michael Biebl ]
* New upstream release.
* Drop obsolete Breaks/Replaces from pre-wheezy.
* Update Build-Depends as per configure.ac:
  - Bump libglibmm-2.4-dev to (>= 2.46.1)
  - Bump libatk1.0-dev to (>= 1.18)
  - Bump mm-common to (>= 0.9.8)
* Bump Standards-Version to 3.9.6.
* Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer and move
  Krzysztof Klimonda to Uploaders.
* Bump SHVER to 2.24.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include <atk/atkvalue.h>
22
22
 
 
23
namespace Atk
 
24
{
 
25
 
 
26
void Value::get_value_and_text(double& value, Glib::ustring& text)
 
27
{
 
28
  gchar* c_text = 0;
 
29
  atk_value_get_value_and_text(gobj(), &(value), &c_text);
 
30
  if (c_text) {
 
31
    text = c_text;
 
32
    g_free (c_text);
 
33
  }
 
34
}
 
35
 
 
36
} //namespace
 
37