SVN commit 1121248 by winterz: do not draw the event icon for plain old Events. saves space. kolab/issue4349 MERGE: trunk M +2 -3 koagendaitem.cpp --- branches/kdepim/enterprise/kdepim/korganizer/koagendaitem.cpp #1121247:1121248 @@ -676,11 +676,10 @@ } else { eventPxmp = KOGlobals::self()->smallIcon( "calendarbirthday" ); } - } else { - eventPxmp = KOGlobals::self()->smallIcon( "appointment" ); - } conditionalPaint( p, true, x, ft, eventPxmp ); } + // per kolab/issue4349 we don't draw a regular appointment icon (to save space) + } }