~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gtk/gtkmm/toggletoolbutton.cc

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-03-01 23:42:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120301234236-12w6m0hkomhi7h53
Tags: 3.3.16-0ubuntu1
* New upstream version
* debian/control.in: updated the glib requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
218
218
 
219
219
void ToggleToolButton::set_active(bool is_active)
220
220
{
221
 
gtk_toggle_tool_button_set_active(gobj(), static_cast<int>(is_active)); 
 
221
  gtk_toggle_tool_button_set_active(gobj(), static_cast<int>(is_active)); 
222
222
}
223
223
 
224
224
bool ToggleToolButton::get_active() const
233
233
}
234
234
 
235
235
 
 
236
#ifndef GTKMM_DISABLE_DEPRECATED
 
237
 
236
238
#ifdef GLIBMM_PROPERTIES_ENABLED
237
239
Glib::PropertyProxy< bool > ToggleToolButton::property_active() 
238
240
{
239
241
  return Glib::PropertyProxy< bool >(this, "active");
240
242
}
 
243
#endif // GTKMM_DISABLE_DEPRECATED
 
244
 
241
245
#endif //GLIBMM_PROPERTIES_ENABLED
242
246
 
243
247
#ifdef GLIBMM_PROPERTIES_ENABLED