summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2009-06-15 20:20:13 (GMT)
committerKevin Smith <git@kismith.co.uk>2009-06-15 20:20:13 (GMT)
commitd490e74fbca3e4ab4a75123dd75dab3bc753c010 (patch)
treeefcad5dabeebf4766dc15dc787b9ba9ba1c2aecb /Swift/QtUI/QtChatWindowFactory.h
parent9bc8ddaf40d73647944592385bf56ece41046846 (diff)
downloadswift-d490e74fbca3e4ab4a75123dd75dab3bc753c010.zip
swift-d490e74fbca3e4ab4a75123dd75dab3bc753c010.tar.bz2
Early pass at tabs. Doesn't do closing or title updating
Diffstat (limited to 'Swift/QtUI/QtChatWindowFactory.h')
-rw-r--r--Swift/QtUI/QtChatWindowFactory.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Swift/QtUI/QtChatWindowFactory.h b/Swift/QtUI/QtChatWindowFactory.h
index bda4c01..5ef6bdf 100644
--- a/Swift/QtUI/QtChatWindowFactory.h
+++ b/Swift/QtUI/QtChatWindowFactory.h
@@ -6,12 +6,14 @@
namespace Swift {
class QtTreeWidgetFactory;
+ class QtChatTabs;
class QtChatWindowFactory : public ChatWindowFactory {
public:
QtChatWindowFactory(QtTreeWidgetFactory *treeWidgetFactory);
ChatWindow* createChatWindow(const JID &contact);
private:
- QtTreeWidgetFactory *treeWidgetFactory_;
+ QtTreeWidgetFactory* treeWidgetFactory_;
+ QtChatTabs* tabs_;
};
}