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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/textmark.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:
176
176
 
177
177
void TextMark::set_visible(bool setting)
178
178
{
179
 
gtk_text_mark_set_visible(gobj(), static_cast<int>(setting)); 
 
179
  gtk_text_mark_set_visible(gobj(), static_cast<int>(setting)); 
180
180
}
181
181
 
182
182
bool TextMark::get_visible() const
215
215
}
216
216
 
217
217
 
 
218
#ifndef GTKMM_DISABLE_DEPRECATED
 
219
 
218
220
#ifdef GLIBMM_PROPERTIES_ENABLED
219
221
Glib::PropertyProxy_ReadOnly< Glib::ustring > TextMark::property_name() const
220
222
{
221
223
  return Glib::PropertyProxy_ReadOnly< Glib::ustring >(this, "name");
222
224
}
 
225
#endif // GTKMM_DISABLE_DEPRECATED
 
226
 
223
227
#endif //GLIBMM_PROPERTIES_ENABLED
224
228
 
 
229
#ifndef GTKMM_DISABLE_DEPRECATED
 
230
 
225
231
#ifdef GLIBMM_PROPERTIES_ENABLED
226
232
Glib::PropertyProxy_ReadOnly< bool > TextMark::property_left_gravity() const
227
233
{
228
234
  return Glib::PropertyProxy_ReadOnly< bool >(this, "left-gravity");
229
235
}
 
236
#endif // GTKMM_DISABLE_DEPRECATED
 
237
 
230
238
#endif //GLIBMM_PROPERTIES_ENABLED
231
239
 
232
240