Changeset 6078
- Timestamp:
- 03/02/08 23:12:42 (9 months ago)
- Location:
- trunk/qt4-gui/src
- Files:
-
- 3 modified
-
config/skin.h (modified) (2 diffs)
-
contactlist/sortedcontactlistproxy.h (modified) (1 diff)
-
widgets/mledit.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/config/skin.h
r6007 r6078 84 84 virtual ~ButtonSkin() { } 85 85 virtual void loadSkin(CIniFile& skinFile, QString name, QString baseSkinDir); 86 87 private: 88 using ShapeSkin::loadSkin; 86 89 }; 87 90 … … 96 99 virtual ~LabelSkin() { } 97 100 virtual void loadSkin(CIniFile& skinFile, QString name, QString baseSkinDir); 101 102 private: 103 using ShapeSkin::loadSkin; 98 104 }; 99 105 -
trunk/qt4-gui/src/contactlist/sortedcontactlistproxy.h
r5837 r6078 64 64 void sort(int column = 0, int role = Qt::DisplayRole, Qt::SortOrder order = Qt::AscendingOrder); 65 65 66 /** 67 * Same sort as above but with same parameters as base class so we overload 68 * it. Also this sort() has no default values to sovle problems when calls 69 * to sort() would be ambiguous with base sort() accessable. 70 * 71 * @param column Column to sort on 72 * @param order Order to sort 73 */ 74 virtual void sort(int column, Qt::SortOrder order) 75 { sort(column, Qt::DisplayRole, order); } 76 66 77 private: 67 78 /** -
trunk/qt4-gui/src/widgets/mledit.cpp
r6064 r6078 260 260 } 261 261 262 #if 0 263 //TODO: This may or may not be needed for KTextEdit in KDE 4 264 262 265 #ifdef MLEDIT_USE_KTEXTEDIT 263 266 /** … … 277 280 #endif 278 281 279 #if 0280 //TODO: This may or may not be needed for KTextEdit in KDE 4281 282 /* 282 283 * KTextEdit adds a menu entry for doing spell checking. Unfortunatly KSpell
