aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/libkviobjects.cpp
diff options
context:
space:
mode:
authorGravatar Noldor2008-09-12 14:27:09 +0000
committerGravatar Noldor2008-09-12 14:27:09 +0000
commit0012f2217579f97bb20c6371be8a7921a2119a04 (patch)
treef375c2a315776f79c663a8192029eee35c567af2 /src/modules/objects/libkviobjects.cpp
parentfixed subversion message (diff)
downloadKVIrc-0012f2217579f97bb20c6371be8a7921a2119a04.tar.gz
KVIrc-0012f2217579f97bb20c6371be8a7921a2119a04.tar.bz2
KVIrc-0012f2217579f97bb20c6371be8a7921a2119a04.zip
QT4 new stuff and ftp/http(wip) new classes (lack of docs :\)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2441 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/libkviobjects.cpp')
-rw-r--r--src/modules/objects/libkviobjects.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/modules/objects/libkviobjects.cpp b/src/modules/objects/libkviobjects.cpp
index 5a9881def..fdf0a7040 100644
--- a/src/modules/objects/libkviobjects.cpp
+++ b/src/modules/objects/libkviobjects.cpp
@@ -29,8 +29,10 @@
#include "class_dialog.h"
#include "class_dockwindow.h"
#include "class_file.h"
+#include "class_ftp.h"
#include "class_groupbox.h"
#include "class_hbox.h"
+#include "class_http.h"
#include "class_layout.h"
#include "class_lcd.h"
#include "class_lineedit.h"
@@ -88,6 +90,8 @@ static bool objects_module_cleanup(KviModule *m)
// Don't attempt to change the order of these calls.
// Derived classes must be unregistered before the base ones.
KviKvsObject_process::unregisterSelf();
+ KviKvsObject_ftp::unregisterSelf();
+ KviKvsObject_http::unregisterSelf();
KviKvsObject_socket::unregisterSelf();
KviKvsObject_xmlreader::unregisterSelf();
KviKvsObject_wrapper::unregisterSelf();
@@ -986,6 +990,9 @@ static bool objects_module_init(KviModule * m)
KviKvsObject_wrapper::registerSelf();
KviKvsObject_xmlreader::registerSelf();
KviKvsObject_socket::registerSelf();
+ KviKvsObject_http::registerSelf();
+ KviKvsObject_ftp::registerSelf();
+
KviKvsObject_process::registerSelf();
return true;