Skip to content

Commit ed5fcf4

Browse files
author
Koen Deforche
committed
see Changelog, IE/Opera glitches
1 parent 6ea0ca7 commit ed5fcf4

30 files changed

+837
-454
lines changed

Changelog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
19-01-2011:
2+
* Wt/WPdfImage: add true type font support (libharu patch pending)
3+
14
13-01-2011:
25
* Wt/Chart/WCartesianChart: implement legend location, alignment,
36
and styling options

examples/dragdrop/dragdrop.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body, html {
2-
height: 100%;
2+
height: 90%;
33
margin: 0px;
44
padding: 0px;
55
}
@@ -32,4 +32,4 @@ body, td {
3232
border: 1px solid #000;
3333

3434
background-color: #ffece0;
35-
}
35+
}

examples/widgetgallery/ControlsWidget.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ class ControlsWidget : public Wt::WContainerWidget
4141
const std::string &classname4,
4242
WContainerWidget *parent) const;
4343

44+
EventDisplayer* eventDisplayer() { return ed_; }
45+
4446
protected:
4547
EventDisplayer *ed_;
4648

examples/widgetgallery/MvcWidgets.C

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,14 @@ WWidget *MvcWidgets::viewsTree()
217217

218218
topic("WTreeView", result);
219219

220-
WStandardItemModel *model = TreeViewExample::createModel(false, this);
221-
222-
TreeViewExample *tv1 = new TreeViewExample(model, tr("mvc-WTreeView"));
220+
WStandardItemModel *model1 = TreeViewExample::createModel(false, this);
221+
TreeViewExample *tv1
222+
= new TreeViewExample(model1, tr("mvc-WTreeView"));
223223
result->addWidget(tv1);
224-
225-
TreeViewExample *tv2 = new TreeViewExample(model,
226-
tr("mvc-WTreeView-column1Fixed"));
224+
225+
WStandardItemModel *model2 = TreeViewExample::createModel(false, this);
226+
TreeViewExample *tv2
227+
= new TreeViewExample(model2, tr("mvc-WTreeView-column1Fixed"));
227228
result->addWidget(tv2);
228229

229230
tv2->treeView()->setColumn1Fixed(true);

0 commit comments

Comments
 (0)