Changeset 6191 for trunk/qt4-gui/src/config
- Timestamp:
- 05/11/08 06:43:50 (7 months ago)
- Location:
- trunk/qt4-gui/src/config
- Files:
-
- 2 modified
-
contactlist.cpp (modified) (3 diffs)
-
contactlist.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/config/contactlist.cpp
r6156 r6191 63 63 iniFile.ReadBool("ScrollBar", myAllowScrollBar, true); 64 64 iniFile.ReadBool("SystemBackground", myUseSystemBackground, false); 65 iniFile.ReadBool("AutoScrolling", myAutoScroll, true); 65 66 66 67 unsigned short flash; … … 128 129 iniFile.WriteBool("ScrollBar", myAllowScrollBar); 129 130 iniFile.WriteBool("SystemBackground", myUseSystemBackground); 131 iniFile.WriteBool("AutoScrolling", myAutoScroll); 130 132 131 133 iniFile.WriteNum("NumColumns", myColumnCount); … … 311 313 } 312 314 315 void Config::ContactList::setAutoScroll(bool autoScroll) 316 { 317 myAutoScroll = autoScroll; 318 } 319 313 320 void Config::ContactList::setShowDividers(bool showDividers) 314 321 { -
trunk/qt4-gui/src/config/contactlist.h
r6156 r6191 110 110 bool allowScrollBar() const { return myAllowScrollBar; } 111 111 bool useSystemBackground() const { return myUseSystemBackground; } 112 bool autoScroll() const { return myAutoScroll; } 112 113 113 114 bool popupPicture() const { return myPopupPicture; } … … 160 161 void setAllowScrollBar(bool allowScrollBar); 161 162 void setUseSystemBackground(bool useSystemBackground); 163 void setAutoScroll(bool autoScroll); 162 164 163 165 void setPopupPicture(bool popupPicture); … … 240 242 bool myAllowScrollBar; 241 243 bool myUseSystemBackground; 244 bool myAutoScroll; 242 245 243 246 // Contact list sorting
