diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-12-17 13:21:14 (GMT) |
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2011-01-30 15:10:02 (GMT) |
| commit | b897bac235a95f9c4654b31d101779bd0cc8f72f (patch) | |
| tree | 8d00b3ab58ec200adf670e01671eed91876b485d /Swift/QtUI/QtUIFactory.cpp | |
| parent | 869c52b244c2d03313e9eda83fac05bf0fc3a619 (diff) | |
| download | swift-contrib-b897bac235a95f9c4654b31d101779bd0cc8f72f.zip swift-contrib-b897bac235a95f9c4654b31d101779bd0cc8f72f.tar.bz2 | |
Added profile edit dialog.
Resolves: #141, #587.
Diffstat (limited to 'Swift/QtUI/QtUIFactory.cpp')
| -rw-r--r-- | Swift/QtUI/QtUIFactory.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Swift/QtUI/QtUIFactory.cpp b/Swift/QtUI/QtUIFactory.cpp index 8cb9863..953d658 100644 --- a/Swift/QtUI/QtUIFactory.cpp +++ b/Swift/QtUI/QtUIFactory.cpp @@ -21,6 +21,7 @@ #include "QtSwiftUtil.h" #include "MUCSearch/QtMUCSearchWindow.h" #include "UserSearch/QtUserSearchWindow.h" +#include "QtProfileWindow.h" namespace Swift { @@ -87,4 +88,8 @@ JoinMUCWindow* QtUIFactory::createJoinMUCWindow() { return new QtJoinMUCWindow(); } +ProfileWindow* QtUIFactory::createProfileWindow() { + return new QtProfileWindow(); +} + } |
Swift