Skip to content

Commit 1461dd6

Browse files
author
Koen Deforche
committed
Several changes:
- Fix websocket hang issue - Fix #3984 WDoubleSpinBox::setReadOnly(true) does not work - Optimize build times by not pruning compile tree where possible - Fix #3994 WPopupMenu - MenuItem only triggers on the text - Fix #3974 Use WLink::target in WItemDelegate - Fix #3942 Wt.Auth.user-name is not shown properly since 3.3.4 - Fix #4085 FW SSL client info - Fix #3975 JS exception for server filtered WSuggestionPopups - Fix #3995 WTableView: empty ColumnHeader does not fire mouse events - Feature #2805 API for connection status updates - Fix #2759 WDoubleValidator ignore trailing spaces - Feature #2712 add WLink::setTarget(AnchorTarget ) - Fix #2803 WLocale::currentLocale().xxxformat() in asString and anyToAny - Fix #3245 WApplication::docRoot returns empty string after WServer::post - Fixed double click emitted when clicking on TreeView - Fix #3879 Problem listening to mouseWentUp on TreeView - Fix #3996 Trigger mouse click in document to allow popup to be closed - Fix #4006 wtwithqt: Switch from QApplication to QCoreApplication - Feature #4008 QueryModel: separate ORDER BY for sort() (B. Toll) - Fix #4009 QueryModel: setQuery with keepColumns forgets ORDER BY - Fix #4007 QueryModel: does not update WTableView header on setHeaderData - Fix precision when serializing doubles (7->16) - Fix #3912 Updated Jplayer to version 2.9.2 - Fix #3924 Updated sqlite to version 3.8.10.1 - Fix #3928 Segfault in Wt::WServer::postAll - Fix #4001 Creating an empty WDialog causes a checkable WMenuItem in a WPopupMenu to not work(Firefox) - Fix #3948 WTimeEdit regexp for "mm" is incorrect (+ for seconds also) - Fix #3980 Uninitialized variable in WAxis.C - WTemplate: added a method to iterate bound widgets - WFileUpload: fix regression (outside WidgetSet) and better origin check - Wt::Dbo: fix weak_ptr error and add missing .empty() function to collection
1 parent a1ddd97 commit 1461dd6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+127529
-91904
lines changed

examples/blog/view/BlogView.C

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@
1010
#include "BlogLoginWidget.h"
1111

1212
#include "../model/BlogSession.h"
13-
#include "../model/Comment.h"
1413
#include "../model/Post.h"
15-
#include "../model/Tag.h"
16-
#include "../model/Token.h"
17-
#include "../model/User.h"
1814

1915
#include <Wt/WAnchor>
2016
#include <Wt/WApplication>

examples/blog/view/CommentView.C

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88

99
#include "../model/BlogSession.h"
1010
#include "../model/Comment.h"
11-
#include "../model/Tag.h"
12-
#include "../model/Token.h"
1311
#include "../model/User.h"
14-
#include "../model/Post.h"
1512

1613
#include <Wt/WContainerWidget>
1714
#include <Wt/WPushButton>

examples/blog/view/PostView.C

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
#include "../asciidoc/asciidoc.h"
1010

1111
#include "../model/BlogSession.h"
12-
#include "../model/Comment.h"
13-
#include "../model/Tag.h"
14-
#include "../model/Token.h"
1512
#include "../model/User.h"
1613

1714
#include <Wt/WAnchor>

examples/wtwithqt/hello.C

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
#include "HelloApplication.h"
3535
#include "QtObject.h"
3636

37-
// Needed when using WQApplication with Qt eventloop = true
38-
//#include <QApplication>
37+
// Needed when using WQCoreApplication with Qt eventloop = true
38+
//#include <QCoreApplication>
3939

4040
using namespace Wt;
4141

4242
Dictionary::Dictionary(const WEnvironment& env)
43-
: WQApplication(env /*, true */)
43+
: WQApplication(env /*, true */)
4444
{
4545
/*
4646
* Note: do not create any Qt objects from here. Initialize your
@@ -100,7 +100,7 @@ WApplication *createApplication(const WEnvironment& env)
100100
int main(int argc, char **argv)
101101
{
102102
// Needed for Qt's eventloop threads to work
103-
//QApplication app(argc, argv);
103+
//QCoreApplication app(argc, argv);
104104

105105
return WRun(argc, argv, &createApplication);
106106
}

resources/jPlayer/Jplayer.swf

-13.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)