summaryrefslogtreecommitdiffstats
path: root/korganizer/printing/cellitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/printing/cellitem.cpp')
-rw-r--r--korganizer/printing/cellitem.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/korganizer/printing/cellitem.cpp b/korganizer/printing/cellitem.cpp
index 67e52c58..73c8aa50 100644
--- a/korganizer/printing/cellitem.cpp
+++ b/korganizer/printing/cellitem.cpp
@@ -27,26 +27,26 @@
#include <klocale.h>
#include <kdebug.h>
-#include <qintdict.h>
+#include <tqintdict.h>
using namespace KOrg;
-QString CellItem::label() const
+TQString CellItem::label() const
{
return i18n("<undefined>");
}
-QPtrList<CellItem> CellItem::placeItem( QPtrList<CellItem> cells,
+TQPtrList<CellItem> CellItem::placeItem( TQPtrList<CellItem> cells,
CellItem *placeItem )
{
kdDebug(5855) << "Placing " << placeItem->label() << endl;
- QPtrList<KOrg::CellItem> conflictItems;
+ TQPtrList<KOrg::CellItem> conflictItems;
int maxSubCells = 0;
- QIntDict<KOrg::CellItem> subCellDict;
+ TQIntDict<KOrg::CellItem> subCellDict;
// Find all items which are in same cell
- QPtrListIterator<KOrg::CellItem> it2( cells );
+ TQPtrListIterator<KOrg::CellItem> it2( cells );
for( it2.toFirst(); it2.current(); ++it2 ) {
KOrg::CellItem *item = it2.current();
if ( item == placeItem ) continue;
@@ -83,7 +83,7 @@ QPtrList<CellItem> CellItem::placeItem( QPtrList<CellItem> cells,
conflictItems.append( placeItem );
placeItem->setSubCells( maxSubCells );
- QPtrListIterator<KOrg::CellItem> it3( conflictItems );
+ TQPtrListIterator<KOrg::CellItem> it3( conflictItems );
for( it3.toFirst(); it3.current(); ++it3 ) {
(*it3)->setSubCells( maxSubCells );
}