summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/calendarhandler.cpp2
-rw-r--r--src/filterdialog.h2
-rw-r--r--src/gui/datewidget.cpp2
-rw-r--r--src/gui/lineedit.cpp4
-rw-r--r--src/mainwindow.cpp2
6 files changed, 7 insertions, 7 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 1768a24..64bc01c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -122,7 +122,7 @@ KDE_OPTIONS = noautodist
CLEANFILES = *~ *.loT
# the library search path.
-tellico_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor $(LIB_KPARTS)
+tellico_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor $(LIB_KPARTS)
uidir = $(kde_datadir)/tellico
ui_DATA = tellicoui.rc
diff --git a/src/calendarhandler.cpp b/src/calendarhandler.cpp
index 5a88ac8..303bad1 100644
--- a/src/calendarhandler.cpp
+++ b/src/calendarhandler.cpp
@@ -31,7 +31,7 @@
#include <unistd.h>
#include <limits.h>
-// most of this code came from konsolekalendar in kdepim
+// most of this code came from konsolekalendar in tdepim
using Tellico::CalendarHandler;
diff --git a/src/filterdialog.h b/src/filterdialog.h
index 26509ba..d12b5f0 100644
--- a/src/filterdialog.h
+++ b/src/filterdialog.h
@@ -14,7 +14,7 @@
#ifndef FILTERDIALOG_H
#define FILTERDIALOG_H
-// kwidgetlister is copied from kdepim/libkdenetwork cvs
+// kwidgetlister is copied from tdepim/libkdenetwork cvs
#include "gui/kwidgetlister.h"
#include "filter.h"
#include "datavectors.h"
diff --git a/src/gui/datewidget.cpp b/src/gui/datewidget.cpp
index a8cc726..c43ca26 100644
--- a/src/gui/datewidget.cpp
+++ b/src/gui/datewidget.cpp
@@ -11,7 +11,7 @@
* *
***************************************************************************/
-// this class borrows heavily from kdateedit.h in the kdepim module
+// this class borrows heavily from kdateedit.h in the tdepim module
// which is Copyright (c) 2002 Cornelius Schumacher <[email protected]>
// and published under the LGPL
diff --git a/src/gui/lineedit.cpp b/src/gui/lineedit.cpp
index e5da745..cca7f7d 100644
--- a/src/gui/lineedit.cpp
+++ b/src/gui/lineedit.cpp
@@ -77,11 +77,11 @@ void LineEdit::drawContents(TQPainter* painter_) {
// save current pen
TQPen oldPen = painter_->pen();
- // follow lead of kdepim and amarok, use disabled text color
+ // follow lead of tdepim and amarok, use disabled text color
painter_->setPen(palette().color(TQPalette::Disabled, TQColorGroup::Text));
TQRect rect = contentsRect();
- // again, follow kdepim and amarok lead, and pad by 2 pixels
+ // again, follow tdepim and amarok lead, and pad by 2 pixels
rect.rLeft() += 2;
painter_->drawText(rect, AlignAuto | AlignVCenter, m_hint);
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index c6b8dfb..6d580b9 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -743,7 +743,7 @@ void MainWindow::initActions() {
actionCollection(), "quick_filter_clear");
m_quickFilter = new GUI::LineEdit();
- m_quickFilter->setHint(i18n("Filter here...")); // same text as kdepim and amarok
+ m_quickFilter->setHint(i18n("Filter here...")); // same text as tdepim and amarok
// about 10 characters wide
m_quickFilter->setFixedWidth(m_quickFilter->fontMetrics().maxWidth()*10);
// want to update every time the filter text changes