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

« back to all changes in this revision

Viewing changes to demos/gtk-demo/example_stockbrowser.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:
173
173
Glib::ustring Example_StockBrowser::id_to_symbol(const Gtk::StockID& stockid)
174
174
{
175
175
  static const char prefix[] = "gtk-";
176
 
  const size_t prefix_length = sizeof(prefix) - 1;
 
176
  const std::size_t prefix_length = sizeof(prefix) - 1;
177
177
 
178
178
  const Glib::ustring id = stockid.get_string();
179
179
  Glib::ustring::const_iterator id_pos = id.begin();