diff options
Diffstat (limited to 'kmoon')
-rw-r--r-- | kmoon/kmoonapplet.cpp | 10 | ||||
-rw-r--r-- | kmoon/kmoondlg.cpp | 4 | ||||
-rw-r--r-- | kmoon/kmoonwidget.cpp | 16 | ||||
-rw-r--r-- | kmoon/kmoonwidget.h | 2 |
4 files changed, 16 insertions, 16 deletions
diff --git a/kmoon/kmoonapplet.cpp b/kmoon/kmoonapplet.cpp index c7051a7..e469b68 100644 --- a/kmoon/kmoonapplet.cpp +++ b/kmoon/kmoonapplet.cpp @@ -27,7 +27,7 @@ #include <tqtooltip.h> #include <tqpainter.h> #include <tqpopupmenu.h> -#include <tqlayout.h> +#include <layout.h> #include <dcopclient.h> #include <kdebug.h> @@ -104,7 +104,7 @@ void MoonPAWidget::showAbout() KStdGuiItem::ok() ); TQPixmap ret = DesktopIcon("kmoon"); - TQString text = i18n(description) + TQString::tqfromLatin1("\n\n") + + TQString text = i18n(description) + TQString::fromLatin1("\n\n") + i18n("Written by Stephan Kulow <coolo@kde.org>\n" "\n" "Made an applet by M G Berberich " @@ -136,7 +136,7 @@ void MoonPAWidget::settings() config->writeEntry("Mask", moon->mask()); config->sync(); } - tqrepaint(); + repaint(); } void MoonPAWidget::timerEvent( TQTimerEvent * ) @@ -144,8 +144,8 @@ void MoonPAWidget::timerEvent( TQTimerEvent * ) time_t clock; time(&clock); struct tm *t = localtime(&clock); - moon->calctqStatus(mktime(t)); - moon->tqrepaint(); + moon->calcStatus(mktime(t)); + moon->repaint(); } void MoonPAWidget::mousePressEvent( TQMouseEvent *e) diff --git a/kmoon/kmoondlg.cpp b/kmoon/kmoondlg.cpp index d4d750f..7c79a6f 100644 --- a/kmoon/kmoondlg.cpp +++ b/kmoon/kmoondlg.cpp @@ -19,7 +19,7 @@ */ #include <tqslider.h> -#include <tqlayout.h> +#include <layout.h> #include <klocale.h> #include <tqwhatsthis.h> #include <tqvbox.h> @@ -94,7 +94,7 @@ void KMoonDlg::angleChanged(int value) { } void KMoonDlg::help() { - kapp->invokeHelp(TQString::tqfromLatin1("config")); + kapp->invokeHelp(TQString::fromLatin1("config")); } void KMoonDlg::toggleHemi() { diff --git a/kmoon/kmoonwidget.cpp b/kmoon/kmoonwidget.cpp index 89858c8..fd4dcf1 100644 --- a/kmoon/kmoonwidget.cpp +++ b/kmoon/kmoonwidget.cpp @@ -70,14 +70,14 @@ MoonWidget::MoonWidget(TQWidget *parent, const char *name) time(&clock); t = gmtime(&clock); // kdDebug() << "time " << t->tm_isdst << " " << timezone << " " << daylight << endl ; - calctqStatus(mktime(t)); + calcStatus(mktime(t)); } MoonWidget::~MoonWidget() { } -void MoonWidget::calctqStatus( time_t time ) +void MoonWidget::calcStatus( time_t time ) { uint lun = 0; time_t last_new = 0; @@ -217,14 +217,14 @@ void MoonWidget::calctqStatus( time_t time ) } renderGraphic(); - tqrepaint(); + repaint(); } TQImage MoonWidget::loadMoon(int index) { if (index == 0) // the new moon has the wrong filename index = 29; - TQString filename = TQString("kmoon/pics/moon%1.png").tqarg(index); + TQString filename = TQString("kmoon/pics/moon%1.png").arg(index); TQString path = locate("data", filename); if (path.isNull()) kdFatal() << "cound't find " << filename << ". Exiting.\n"; @@ -238,21 +238,21 @@ void MoonWidget::setAngle(int value) { _angle = value; renderGraphic(); - tqrepaint(); + repaint(); } void MoonWidget::setNorthHemi(bool n) { _north = n; renderGraphic(); - tqrepaint(); + repaint(); } void MoonWidget::setMask(bool value) { _mask = value; renderGraphic(); - tqrepaint(); + repaint(); } void MoonWidget::paintEvent(TQPaintEvent *) @@ -263,7 +263,7 @@ void MoonWidget::paintEvent(TQPaintEvent *) void MoonWidget::resizeEvent(TQResizeEvent *) { renderGraphic(); - tqrepaint(); + repaint(); } void MoonWidget::renderGraphic() diff --git a/kmoon/kmoonwidget.h b/kmoon/kmoonwidget.h index 3b2415f..f636b60 100644 --- a/kmoon/kmoonwidget.h +++ b/kmoon/kmoonwidget.h @@ -37,7 +37,7 @@ public: MoonWidget(TQWidget *parent = 0, const char *name = 0); ~MoonWidget(); - void calctqStatus( time_t time ); + void calcStatus( time_t time ); int angle() const { return _angle; } void setAngle(int angle); |