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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/applicationwindow.cc

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-28 09:25:06 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120928092506-9h63ais5o750a8sk
Tags: 3.5.13-0ubuntu1
* New upstream release
* debian/control:
  - Bump build-depends on libglibmm-2.4-dev, libgtk-3-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
 
156
156
void ApplicationWindow::set_show_menubar(bool show_menubar)
157
157
{
158
 
  gtk_application_window_set_show_menubar(gobj(), static_cast<int>(show_menubar)); 
 
158
  gtk_application_window_set_show_menubar(gobj(), static_cast<int>(show_menubar));
159
159
}
160
160
 
161
161
bool ApplicationWindow::get_show_menubar() const
163
163
  return gtk_application_window_get_show_menubar(const_cast<GtkApplicationWindow*>(gobj()));
164
164
}
165
165
 
 
166
guint ApplicationWindow::get_id() const
 
167
{
 
168
  return gtk_application_window_get_id(const_cast<GtkApplicationWindow*>(gobj()));
 
169
}
 
170
 
166
171
 
167
172
#ifdef GLIBMM_PROPERTIES_ENABLED
168
173
Glib::PropertyProxy< bool > ApplicationWindow::property_show_menubar()