SVN commit 968050 by poberndorfer: fix signed/unsigned compare warnings M +1 -1 quickopen/quickopenmodel.cpp M +1 -1 quickopen/quickopenmodel.h M +1 -1 sourceformatter/sourceformatterplugin.cpp --- trunk/KDE/kdevplatform/plugins/quickopen/quickopenmodel.cpp #968049:968050 @@ -303,7 +303,7 @@ void QuickOpenModel::resetTimer() { //Remove all cached data behind row m_resetBehindRow - for(QHash::iterator it = m_cachedData.begin(); it != m_cachedData.end(); ) { + for(DataList::iterator it = m_cachedData.begin(); it != m_cachedData.end(); ) { if(it.key() > m_resetBehindRow) it = m_cachedData.erase(it); else --- trunk/KDE/kdevplatform/plugins/quickopen/quickopenmodel.h #968049:968050 @@ -99,7 +99,7 @@ KDevelop::QuickOpenDataPointer getItem( int row, bool noReset = false ) const; - typedef QHash DataList; + typedef QHash DataList; mutable DataList m_cachedData; QTreeView* m_treeView; --- trunk/KDE/kdevplatform/plugins/sourceformatter/sourceformatterplugin.cpp #968049:968050 @@ -123,7 +123,7 @@ // put the selection back to the same indent level. // taking note of the config options. if (has_selection) { - unsigned int indentCount = 0; + int indentCount = 0; QString indentWith(""); QString original = view->selectionText();