From: Pino Toscano Date: Mon, 13 Mar 2006 10:48:15 +0000 (+0000) Subject: adapt to the new kdelibs snapshot X-Git-Tag: v3.80.2~145 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=5b5ef9b6795848eff7b72b361080dc768c6c83e5;p=libqmvoc.git adapt to the new kdelibs snapshot svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=518172 --- diff --git a/kdeeduui/kdeeduglossary.cpp b/kdeeduui/kdeeduglossary.cpp index af4f8db..23dbc41 100644 --- a/kdeeduui/kdeeduglossary.cpp +++ b/kdeeduui/kdeeduglossary.cpp @@ -15,8 +15,8 @@ #include #include #include -#include -#include +#include +#include #include #include @@ -217,7 +217,7 @@ GlossaryDialog::GlossaryDialog( bool folded, QWidget *parent ) lbl->setText( i18n( "Search:" ) ); hbox->addWidget( lbl ); - m_search = new KListViewSearchLine( plainPage(), 0L ); + m_search = new K3ListViewSearchLine( plainPage(), 0L ); m_search->setObjectName( "search-line" ); hbox->addWidget( m_search ); vbox->addLayout( hbox ); @@ -226,7 +226,7 @@ GlossaryDialog::GlossaryDialog( bool folded, QWidget *parent ) QSplitter *vs = new QSplitter( plainPage() ); vbox->addWidget( vs ); - m_glosstree = new KListView( vs ); + m_glosstree = new K3ListView( vs ); m_glosstree->setObjectName( "treeview" ); m_glosstree->addColumn( "entries" ); m_glosstree->header()->hide(); diff --git a/kdeeduui/kdeeduglossary.h b/kdeeduui/kdeeduglossary.h index ae2c8df..805ee63 100644 --- a/kdeeduui/kdeeduglossary.h +++ b/kdeeduui/kdeeduglossary.h @@ -22,8 +22,8 @@ class QChar; class QDomDocument; class Q3ListViewItem; -class KListView; -class KListViewSearchLine; +class K3ListView; +class K3ListViewSearchLine; class KActionCollection; class GlossaryItem; @@ -277,14 +277,14 @@ class GlossaryDialog : public KDialogBase void updateTree(); KHTMLPart *m_htmlpart; - KListView *m_glosstree; + K3ListView *m_glosstree; QString m_htmlbasestring; KActionCollection* m_actionCollection; Q3ListViewItem* findTreeWithLetter( const QChar&, Q3ListViewItem* ); - KListViewSearchLine *m_search; + K3ListViewSearchLine *m_search; private slots: void slotClicked( Q3ListViewItem * );