summaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/eventeditor/eventeditor.cpp2
-rw-r--r--src/modules/filetransferwindow/filetransferwindow.cpp2
-rw-r--r--src/modules/options/optw_messages.cpp6
-rw-r--r--src/modules/raweditor/raweditor.cpp2
-rw-r--r--src/modules/sharedfileswindow/sharedfileswindow.cpp2
-rw-r--r--src/modules/toolbareditor/toolbareditor.cpp2
6 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/eventeditor/eventeditor.cpp b/src/modules/eventeditor/eventeditor.cpp
index b425319e..d967bb74 100644
--- a/src/modules/eventeditor/eventeditor.cpp
+++ b/src/modules/eventeditor/eventeditor.cpp
@@ -240,7 +240,7 @@ void KviEventEditor::toggleCurrentHandlerEnabled()
if(m_pLastEditedItem)
{
m_pLastEditedItem->m_bEnabled = !(m_pLastEditedItem->m_bEnabled);
- m_pListView->tqrepaintItem(m_pLastEditedItem);
+ m_pListView->repaintItem(m_pLastEditedItem);
selectionChanged(m_pLastEditedItem);
}
}
diff --git a/src/modules/filetransferwindow/filetransferwindow.cpp b/src/modules/filetransferwindow/filetransferwindow.cpp
index e26cc600..b34b843f 100644
--- a/src/modules/filetransferwindow/filetransferwindow.cpp
+++ b/src/modules/filetransferwindow/filetransferwindow.cpp
@@ -647,7 +647,7 @@ void KviFileTransferWindow::heartbeat()
{
if(((KviFileTransferItem *)i1)->transfer()->active())
{
- m_pListView->tqrepaintItem(i1);
+ m_pListView->repaintItem(i1);
}
i1 = i1->nextSibling();
}
diff --git a/src/modules/options/optw_messages.cpp b/src/modules/options/optw_messages.cpp
index 9e79daa5..058afb61 100644
--- a/src/modules/options/optw_messages.cpp
+++ b/src/modules/options/optw_messages.cpp
@@ -484,7 +484,7 @@ void KviMessageColorsOptionsWidget::newIconSelected(int iconId)
if(iconId >= KVI_NUM_SMALL_ICONS)return;
m_pLastItem->msgType()->setPixId(iconId);
m_pIconButton->setIconSet(*(g_pIconManager->getSmallIcon(iconId)));
- m_pListView->tqrepaintItem(m_pLastItem);
+ m_pListView->repaintItem(m_pLastItem);
}
void KviMessageColorsOptionsWidget::saveLastItem()
@@ -510,7 +510,7 @@ void KviMessageColorsOptionsWidget::saveLastItem()
curIt = m_pLevelListBox->currentItem();
if(curIt < 0 || curIt > 5)curIt = 1;
m_pLastItem->msgType()->setLevel(curIt);
- m_pListView->tqrepaintItem(m_pLastItem);
+ m_pListView->repaintItem(m_pLastItem);
}
void KviMessageColorsOptionsWidget::itemChanged(KviTalListViewItem * it)
@@ -678,7 +678,7 @@ void KviMessageColorsOptionsWidget::load()
int iLevel = cfg.readIntEntry(tmp,it->msgType()->level());
it->msgType()->setLevel(iLevel);
- m_pListView->tqrepaintItem(it);
+ m_pListView->repaintItem(it);
it = (KviMessageListViewItem *)(it->nextSibling());
}
diff --git a/src/modules/raweditor/raweditor.cpp b/src/modules/raweditor/raweditor.cpp
index 662dc371..521c994c 100644
--- a/src/modules/raweditor/raweditor.cpp
+++ b/src/modules/raweditor/raweditor.cpp
@@ -275,7 +275,7 @@ void KviRawEditor::toggleCurrentHandlerEnabled()
if(m_pLastEditedItem)
{
m_pLastEditedItem->m_bEnabled = !(m_pLastEditedItem->m_bEnabled);
- m_pListView->tqrepaintItem(m_pLastEditedItem);
+ m_pListView->repaintItem(m_pLastEditedItem);
selectionChanged(m_pLastEditedItem);
}
}
diff --git a/src/modules/sharedfileswindow/sharedfileswindow.cpp b/src/modules/sharedfileswindow/sharedfileswindow.cpp
index 3f486ddc..7e2364fe 100644
--- a/src/modules/sharedfileswindow/sharedfileswindow.cpp
+++ b/src/modules/sharedfileswindow/sharedfileswindow.cpp
@@ -642,7 +642,7 @@ void KviSharedFilesWindow::heartbeat()
{
if(((KviSharedFilesItem *)i1)->transfer()->active())
{
- m_pListView->tqrepaintItem(i1);
+ m_pListView->repaintItem(i1);
}
i1 = i1->nextSibling();
}
diff --git a/src/modules/toolbareditor/toolbareditor.cpp b/src/modules/toolbareditor/toolbareditor.cpp
index d80d8844..3f3d9d1a 100644
--- a/src/modules/toolbareditor/toolbareditor.cpp
+++ b/src/modules/toolbareditor/toolbareditor.cpp
@@ -357,7 +357,7 @@ void KviCustomizeToolBarsDialog::currentToolBarChanged()
void KviCustomizeToolBarsDialog::showEvent(TQShowEvent * e)
{
-// tqrepaintContents();
+// repaintContents();
// TQRect r = tqparentWidget() ? tqparentWidget()->rect() : TQApplication::desktop()->rect();
// int x = (r.width() - width()) / 2;
// int y = (r.height() - height()) / 2;