summaryrefslogtreecommitdiffstats
path: root/kbugbuster/gui/centralwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbugbuster/gui/centralwidget.cpp')
-rw-r--r--kbugbuster/gui/centralwidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kbugbuster/gui/centralwidget.cpp b/kbugbuster/gui/centralwidget.cpp
index 6ceebe0f..1813d627 100644
--- a/kbugbuster/gui/centralwidget.cpp
+++ b/kbugbuster/gui/centralwidget.cpp
@@ -296,14 +296,14 @@ void CentralWidget::updateBugDetails( const Bug &bug, const BugDetails &bd )
void CentralWidget::slotReloadPackageList()
{
- BugSystem::self()->cache()->tqinvalidatePackageList();
+ BugSystem::self()->cache()->invalidatePackageList();
BugSystem::self()->retrievePackageList();
}
void CentralWidget::slotReloadPackage()
{
if (!m_currentPackage.isNull()) {
- BugSystem::self()->cache()->tqinvalidateBugList( m_currentPackage, m_currentComponent );
+ BugSystem::self()->cache()->invalidateBugList( m_currentPackage, m_currentComponent );
BugSystem::self()->retrieveBugList( m_currentPackage, m_currentComponent );
}
}
@@ -316,7 +316,7 @@ void CentralWidget::slotLoadMyBugs()
void CentralWidget::slotReloadBug()
{
if (!m_currentBug.isNull()) {
- BugSystem::self()->cache()->tqinvalidateBugDetails( m_currentBug );
+ BugSystem::self()->cache()->invalidateBugDetails( m_currentBug );
BugSystem::self()->retrieveBugDetails( m_currentBug );
}
}