diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:49:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:49:30 -0600 |
commit | a9bde819f2b421dcc44741156e75eca4bb5fb4f4 (patch) | |
tree | d087071b1e8fcf79698938efec19f8e48bab0799 /korganizer/komonthview.cpp | |
parent | 5c4a80ead2b1fe57dc6a8c29d0368792344cd61e (diff) | |
download | tdepim-a9bde819f2b421dcc44741156e75eca4bb5fb4f4.tar.gz tdepim-a9bde819f2b421dcc44741156e75eca4bb5fb4f4.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'korganizer/komonthview.cpp')
-rw-r--r-- | korganizer/komonthview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp index 6bb94f5cb..fb52f4b6a 100644 --- a/korganizer/komonthview.cpp +++ b/korganizer/komonthview.cpp @@ -566,7 +566,7 @@ class MonthViewCell::CreateItemVisitor : if (event->doesFloat()) text = event->summary(); else { - text = KGlobal::locale()->formatTime(event->dtStart().time()); + text = TDEGlobal::locale()->formatTime(event->dtStart().time()); dt.setTime( event->dtStart().time() ); text += ' ' + event->summary(); } @@ -603,7 +603,7 @@ class MonthViewCell::CreateItemVisitor : TQDateTime dt( mDate ); if ( todo->hasDueDate() && !todo->doesFloat() && todo->dtDue().time() != TQTime( 0,0 ) && todo->dtDue().time().isValid() ) { - text += KGlobal::locale()->formatTime( todo->dtDue().time() ); + text += TDEGlobal::locale()->formatTime( todo->dtDue().time() ); text += ' '; dt.setTime( todo->dtDue().time() ); } @@ -928,7 +928,7 @@ bool KOMonthView::eventDurationHint( TQDateTime &startDt, TQDateTime &endDt, boo void KOMonthView::updateConfig() { - mWeekStartDay = KGlobal::locale()->weekStartDay(); + mWeekStartDay = TDEGlobal::locale()->weekStartDay(); TQFontMetrics fontmetric( mDayLabels[0]->font() ); mWidthLongDayLabel = 0; |