diff options
author | corvid <corvid@lavabit.com> | 2012-11-26 07:16:50 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2012-11-26 07:16:50 +0000 |
commit | 0bdb3baeb86c23c9673378c69a2758cd08b66d91 (patch) | |
tree | 8d17bcfcd36f3e1449aaccce1f1a20e9c644aed3 /test/dw_example.cc | |
parent | ae3d6a7af29ef4954269e60f1c4fc382ca7d80a9 (diff) |
rm unused arg in Style::create
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]; |