summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew rugby471@gmail.com <>2011-06-26 08:59:54 +0000
committerAndrew rugby471@gmail.com <>2011-06-26 08:59:54 +0000
commit28751002e981c82cc0f99d4532a2e7b5aae491da (patch)
tree75bd1c9772706606425b72137f9fd91e043cc6b6 /src
parentRevert changing to read_async (diff)
downloadinkscape-28751002e981c82cc0f99d4532a2e7b5aae491da.tar.gz
inkscape-28751002e981c82cc0f99d4532a2e7b5aae491da.zip
Correct ustring syntax
(bzr r10092.1.33)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/ocaldialogs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/ocaldialogs.cpp b/src/ui/dialog/ocaldialogs.cpp
index 9e81a90e8..3194046b8 100644
--- a/src/ui/dialog/ocaldialogs.cpp
+++ b/src/ui/dialog/ocaldialogs.cpp
@@ -314,7 +314,7 @@ bool LoadingBox::_on_expose_event(GdkEventExpose* event)
get_style()->paint_shadow(get_window(), get_state(), Gtk::SHADOW_IN,
Gdk::Rectangle(x, y, width, height),
- *this, Glib::ustring::ustring("viewport"), x, y, width, height);
+ *this, Glib::ustring("viewport"), x, y, width, height);
if (draw_spinner) {
int spinner_size = 16;
@@ -567,7 +567,7 @@ bool BaseBox::_on_expose_event(GdkEventExpose* event)
get_style()->paint_shadow(get_window(), get_state(), Gtk::SHADOW_IN,
Gdk::Rectangle(x, y, width, height),
- *this, Glib::ustring::ustring("viewport"), x, y, width, height);
+ *this, Glib::ustring("viewport"), x, y, width, height);
return false;
}