diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:02:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:02:43 -0600 |
commit | aea627236e4de24599c3e30617cf264c3c1b7d40 (patch) | |
tree | 467e13ca5a7eb0ab292259289ecc3572f53c5eae /lib/koproperty/editor.cpp | |
parent | 786304c6211f35ddc4cdd54b7aa7985fef4a2e70 (diff) | |
download | koffice-aea627236e4de24599c3e30617cf264c3c1b7d40.tar.gz koffice-aea627236e4de24599c3e30617cf264c3c1b7d40.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'lib/koproperty/editor.cpp')
-rw-r--r-- | lib/koproperty/editor.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/koproperty/editor.cpp b/lib/koproperty/editor.cpp index 39c965a5..13638119 100644 --- a/lib/koproperty/editor.cpp +++ b/lib/koproperty/editor.cpp @@ -120,7 +120,7 @@ class EditorPrivate using namespace KoProperty; Editor::Editor(TQWidget *parent, bool autoSync, const char *name) - : KListView(parent, name) + : TDEListView(parent, name) { d = new EditorPrivate(this); d->itemDict.setAutoDelete(false); @@ -189,7 +189,7 @@ Editor::fill() d->itemToSelectLater = 0; tqApp->eventLoop()->processEvents(TQEventLoop::AllEvents); hideEditor(); - KListView::clear(); + TDEListView::clear(); d->itemDict.clear(); clearWidgetCache(); if(!d->set) { @@ -416,7 +416,7 @@ Editor::clear(bool editorOnly) if(d->set) d->set->disconnect(this); clearWidgetCache(); - KListView::clear(); + TDEListView::clear(); d->itemDict.clear(); d->topItem = 0; } @@ -872,7 +872,7 @@ TQSize Editor::sizeHint() const { return TQSize( TQFontMetrics(font()).width(columnText(0)+columnText(1)+" "), - KListView::sizeHint().height()); + TDEListView::sizeHint().height()); } void @@ -897,15 +897,15 @@ Editor::setFocus() d->currentWidget->setFocus(); } else { -// kopropertydbg << "KListView::setFocus()" << endl; - KListView::setFocus(); +// kopropertydbg << "TDEListView::setFocus()" << endl; + TDEListView::setFocus(); } } void Editor::resizeEvent(TQResizeEvent *ev) { - KListView::resizeEvent(ev); + TDEListView::resizeEvent(ev); if(d->undoButton->isVisible()) showUndoButton(true); update(); @@ -919,7 +919,7 @@ Editor::eventFilter( TQObject * watched, TQEvent * e ) if (handleKeyPress(TQT_TQKEYEVENT(e))) return true; } - return KListView::eventFilter(watched, e); + return TDEListView::eventFilter(watched, e); } bool @@ -998,7 +998,7 @@ Editor::event( TQEvent * e ) if (e->type()==TQEvent::ParentFontChange) { updateFont(); } - return KListView::event(e); + return TDEListView::event(e); } void @@ -1009,7 +1009,7 @@ Editor::contentsMousePressEvent( TQMouseEvent * e ) setOpen( item, !isOpen(item) ); return; } - KListView::contentsMousePressEvent(e); + TDEListView::contentsMousePressEvent(e); } void @@ -1017,7 +1017,7 @@ Editor::setSorting( int column, bool ascending ) { if (d->set && d->set->groupNames().count()>1) //do not sort when groups are present (maybe reenable this later?) return; - KListView::setSorting( column, ascending ); + TDEListView::setSorting( column, ascending ); updateEditorGeometry(); updateGroupLabelsPosition(); repaintContents(); |