diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-05-11 19:08:59 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-05-11 19:09:21 (GMT) |
commit | 15ed4a079a8bbe3cc9ee2ca47233be7b890464ec (patch) | |
tree | 6ce2d7927c7173977818f4cbdb78079c374c238d | |
parent | 9080e2b826e8cffaa56af96d6b670c219e78424f (diff) | |
download | swift-contrib-15ed4a079a8bbe3cc9ee2ca47233be7b890464ec.zip swift-contrib-15ed4a079a8bbe3cc9ee2ca47233be7b890464ec.tar.bz2 |
Fixed struct vs class warning.
-rw-r--r-- | Swift/QtUI/CocoaApplicationActivateHelper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/CocoaApplicationActivateHelper.h b/Swift/QtUI/CocoaApplicationActivateHelper.h index c831183..8bc2af5 100644 --- a/Swift/QtUI/CocoaApplicationActivateHelper.h +++ b/Swift/QtUI/CocoaApplicationActivateHelper.h @@ -22,7 +22,7 @@ namespace Swift { bool eventFilter(QObject* o, QEvent* e); private: - class Private; + struct Private; Private* p; }; } |