- Timestamp:
- 04/19/12 23:12:50 (11 years ago)
- Branches:
- master, qt5
- Children:
- 687d76f
- Parents:
- 1ba9324
- Location:
- src/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/eventdialog.cpp
r1ba9324 rdadb922 55 55 if(event.isFavourite()) 56 56 { 57 favouriteButton->setIcon(QIcon(":/icons/ emblem-new.png"));57 favouriteButton->setIcon(QIcon(":/icons/favourite-on.png")); 58 58 } 59 59 … … 72 72 { 73 73 event.setFavourite(false); 74 favouriteButton->setIcon(QIcon(":/icons/ emblem-new-off.png"));74 favouriteButton->setIcon(QIcon(":/icons/favourite-off.png")); 75 75 } 76 76 else 77 77 { 78 78 event.setFavourite(true); 79 favouriteButton->setIcon(QIcon(":/icons/ emblem-new.png"));79 favouriteButton->setIcon(QIcon(":/icons/favourite-on.png")); 80 80 } 81 81 event.update("favourite"); -
src/gui/eventdialog.ui
r1ba9324 rdadb922 67 67 <rect> 68 68 <x>0</x> 69 <y> 0</y>70 <width>4 61</width>71 <height>2 76</height>69 <y>-1</y> 70 <width>446</width> 71 <height>262</height> 72 72 </rect> 73 73 </property> … … 291 291 <normaloff>:/icons/appointment-soon-off.png</normaloff>:/icons/appointment-soon-off.png</iconset> 292 292 </property> 293 <property name="iconSize"> 294 <size> 295 <width>32</width> 296 <height>32</height> 297 </size> 298 </property> 299 <property name="shortcut"> 300 <string>CapsLock</string> 301 </property> 293 302 </widget> 294 303 </item> … … 300 309 <property name="icon"> 301 310 <iconset resource="../icons.qrc"> 302 <normaloff>:/icons/emblem-new-off.png</normaloff>:/icons/emblem-new-off.png</iconset> 311 <normaloff>:/icons/favourite-off.png</normaloff>:/icons/favourite-off.png</iconset> 312 </property> 313 <property name="iconSize"> 314 <size> 315 <width>32</width> 316 <height>32</height> 317 </size> 303 318 </property> 304 319 </widget>
Note: See TracChangeset
for help on using the changeset viewer.