summaryrefslogtreecommitdiffabout
path: root/korganizer/koagenda.cpp
authorzautrix <zautrix>2005-07-04 06:42:00 (UTC)
committer zautrix <zautrix>2005-07-04 06:42:00 (UTC)
commit068a89b64d8ef4cb49702ed53ab4e415a0b90a80 (patch) (side-by-side diff)
tree9c2f4b77372cfbb2c1dab2717de027d8500a905a /korganizer/koagenda.cpp
parentad66f0fe56bb88104fb0065ccb599ab0edd35cf4 (diff)
downloadkdepimpi-068a89b64d8ef4cb49702ed53ab4e415a0b90a80.zip
kdepimpi-068a89b64d8ef4cb49702ed53ab4e415a0b90a80.tar.gz
kdepimpi-068a89b64d8ef4cb49702ed53ab4e415a0b90a80.tar.bz2
fixx
Diffstat (limited to 'korganizer/koagenda.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/koagenda.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp
index f860f7d..94c3b22 100644
--- a/korganizer/koagenda.cpp
+++ b/korganizer/koagenda.cpp
@@ -1130,17 +1130,17 @@ void KOAgenda::setNoActionCursor(KOAgendaItem *moveItem,QPoint viewportPos)
cell, where other items are, which do not overlap in Y with the item to place,
the display gets corrupted, although the corruption looks quite nice.
*/
void KOAgenda::placeSubCells(KOAgendaItem *placeItem)
{
QPtrList<KOAgendaItem> conflictItems;
int maxSubCells = 0;
- QIntDict<KOAgendaItem> subCellDict(5);
+ QIntDict<KOAgendaItem> subCellDict(7);
KOAgendaItem *item;
for ( item=mItems.first(); item != 0; item=mItems.next() ) {
if (item != placeItem) {
if (placeItem->cellX() <= item->cellXWidth() &&
placeItem->cellXWidth() >= item->cellX()) {
if ((placeItem->cellYTop() <= item->cellYBottom()) &&
(placeItem->cellYBottom() >= item->cellYTop())) {