diff options
author | Sebastian Geerken <devnull@localhost> | 2012-11-27 16:05:54 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2012-11-27 16:05:54 +0100 |
commit | 6526b42cefc35149af20d645f15e8bb76b0db0e2 (patch) | |
tree | cc4b9874540709435da9657501eae1db77038d99 /test/dw_example.cc | |
parent | 1250d68c8767232849145d9e6abe681a562f6f5d (diff) | |
parent | c58af8aa171908de5e0e069754803235f8ea70f8 (diff) |
Merge.
Diffstat (limited to 'test/dw_example.cc')
-rw-r--r-- | test/dw_example.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dw_example.cc b/test/dw_example.cc index 52aa2440..259650cf 100644 --- a/test/dw_example.cc +++ b/test/dw_example.cc @@ -60,7 +60,7 @@ int main(int argc, char **argv) dw::core::style::Color::create (layout, 0xffffff); dw::core::style::Style *widgetStyle = - dw::core::style::Style::create (layout, &styleAttrs); + dw::core::style::Style::create (&styleAttrs); dw::Textblock *textblock = new dw::Textblock (false); textblock->setStyle (widgetStyle); @@ -72,7 +72,7 @@ int main(int argc, char **argv) styleAttrs.backgroundColor = NULL; dw::core::style::Style *wordStyle = - dw::core::style::Style::create (layout, &styleAttrs); + dw::core::style::Style::create (&styleAttrs); for(int i = 1; i <= 10; i++) { char buf[4]; |