diff options
Diffstat (limited to 'test/dw_find_test.cc')
-rw-r--r-- | test/dw_find_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dw_find_test.cc b/test/dw_find_test.cc index 27817664..e5c79fd3 100644 --- a/test/dw_find_test.cc +++ b/test/dw_find_test.cc @@ -117,7 +117,7 @@ int main(int argc, char **argv) styleAttrs.margin.left = 0; Style *wordStyle = Style::create (layout, &styleAttrs); - Textblock *textblock = new Textblock (false, 100); + Textblock *textblock = new Textblock (false); textblock->setStyle (topWidgetStyle); layout->setWidget (textblock); @@ -128,7 +128,7 @@ int main(int argc, char **argv) for(int j = 0; j < 10; j++) { Textblock *current; if(j < 5) { - current = new Textblock (false, 100); + current = new Textblock (false); stack->getTop()->addWidget (current, widgetStyle); stack->push (current); } else { |