[KBear-cvs] kbear/kbear/plugins/ftpfind ftpfindtreeview.cpp,1.5,1.6 ftpfindtreeview.h,1.3,1.4 scando
Brought to you by:
kbjorn
|
From: <kb...@us...> - 2003-07-21 18:06:55
|
Update of /cvsroot/kbear/kbear/kbear/plugins/ftpfind
In directory sc8-pr-cvs1:/tmp/cvs-serv1599/kbear/plugins/ftpfind
Modified Files:
ftpfindtreeview.cpp ftpfindtreeview.h scandomainworker.cpp
Log Message:
Bugfixes and feature improvements
Index: ftpfindtreeview.cpp
===================================================================
RCS file: /cvsroot/kbear/kbear/kbear/plugins/ftpfind/ftpfindtreeview.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ftpfindtreeview.cpp 20 Jul 2003 19:35:34 -0000 1.5
--- ftpfindtreeview.cpp 21 Jul 2003 18:06:51 -0000 1.6
***************
*** 18,21 ****
--- 18,23 ----
#include <kmessagebox.h>
#include <kglobal.h>
+ #include <klocale.h>
+ #include <kdebug.h>
//////////////////////////////////////////////////////////////////////
// System specific include files
Index: ftpfindtreeview.h
===================================================================
RCS file: /cvsroot/kbear/kbear/kbear/plugins/ftpfind/ftpfindtreeview.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ftpfindtreeview.h 20 Jul 2003 19:35:34 -0000 1.3
--- ftpfindtreeview.h 21 Jul 2003 18:06:52 -0000 1.4
***************
*** 28,31 ****
--- 28,42 ----
@author Björn Sahlström
*/
+ class FTPFindTreeView : public KListView {
+ Q_OBJECT
+ public:
+ /** */
+ FTPFindTreeView( QWidget *parent, const char* name );
+ /** */
+ ~FTPFindTreeView();
+ public slots:
+ void slotClear();
+ };
+
class FTPFindTreeViewItem : public QObject, public QListViewItem {
Q_OBJECT
***************
*** 47,61 ****
QListViewItem* m_currentItem;
ScanDomainWorker* m_worker;
- };
- class FTPFindTreeView : public KListView {
- Q_OBJECT
- public:
- /** */
- FTPFindTreeView( QWidget *parent, const char* name );
- /** */
- ~FTPFindTreeView();
- public slots:
- void slotClear();
-
};
--- 58,61 ----
Index: scandomainworker.cpp
===================================================================
RCS file: /cvsroot/kbear/kbear/kbear/plugins/ftpfind/scandomainworker.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** scandomainworker.cpp 20 Jul 2003 19:35:34 -0000 1.3
--- scandomainworker.cpp 21 Jul 2003 18:06:52 -0000 1.4
***************
*** 16,19 ****
--- 16,21 ----
// KDE specific include files
#include <kextsock.h>
+ #include <klocale.h>
+ #include <kdebug.h>
/////////////////////////////////////////////////////////////////////
// System specific include files
|