diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:12 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:12 -0600 |
commit | fd5d099065a748cac49e20a13481f85666c53c71 (patch) | |
tree | a0f1672cd88eb0e69b9ddc2ed9b08ecd98538bd3 /libtdepim/addresseeselector.cpp | |
parent | b440a9c608596cd88efdb3bfa4661c5e37efbe4b (diff) | |
download | tdepim-fd5d099065a748cac49e20a13481f85666c53c71.tar.gz tdepim-fd5d099065a748cac49e20a13481f85666c53c71.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'libtdepim/addresseeselector.cpp')
-rw-r--r-- | libtdepim/addresseeselector.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libtdepim/addresseeselector.cpp b/libtdepim/addresseeselector.cpp index 38bec42df..4549d3768 100644 --- a/libtdepim/addresseeselector.cpp +++ b/libtdepim/addresseeselector.cpp @@ -293,7 +293,7 @@ void AddresseeSelector::initGUI() uint count = mSelection->fieldCount(); for ( uint i = 0; i < count; ++i, ++row ) { - KListView *listView = new KListView( this ); + TDEListView *listView = new TDEListView( this ); listView->addColumn( mSelection->fieldTitle( i ) ); listView->setFullWidth( true ); mSelectionViews.append( listView ); @@ -330,7 +330,7 @@ void AddresseeSelector::initGUI() layout->addWidget( listView, row, 2 ); } - mAddresseeView = new KListView( this ); + mAddresseeView = new TDEListView( this ); mAddresseeView->addColumn( "" ); mAddresseeView->header()->hide(); mAddresseeView->setFullWidth( true ); @@ -391,7 +391,7 @@ void AddresseeSelector::move( int index ) void AddresseeSelector::remove( int index ) { - KListView *view = mSelectionViews[ index ]; + TDEListView *view = mSelectionViews[ index ]; SelectionViewItem *item = dynamic_cast<SelectionViewItem*>( view->selectedItem() ); if ( item ) { @@ -447,7 +447,7 @@ void AddresseeSelector::setItemSelected( uint fieldIndex, const KABC::Addressee void AddresseeSelector::updateSelectionView( int index ) { - KListView *view = mSelectionViews[ index ]; + TDEListView *view = mSelectionViews[ index ]; view->clear(); SelectionItem::List::Iterator it; |