Mark missing settingsKey name as non-translateable
[quassel.git] / src / uisupport / flatproxymodel.cpp
index ef19074..b8fdc2f 100644 (file)
@@ -518,6 +518,7 @@ void FlatProxyModel::on_rowsInserted(const QModelIndex &parent, int start, int e
 
   SourceItem *sourceItem = sourceToInternal(parent);
   Q_ASSERT(sourceItem);
+  Q_UNUSED(sourceItem);
 
   // sanity check - if that check fails our indexes would be messed up
   for(int row = start; row <= end; row++) {
@@ -592,6 +593,7 @@ void FlatProxyModel::linkTest() const {
   }
   qDebug() << "Last item in tree:" << item << item->pos();
   Q_ASSERT(lastPos == item->pos());
+  Q_UNUSED(lastPos);
 
   qDebug() << "success!";
 }
@@ -652,7 +654,7 @@ FlatProxyModel::SourceItem *FlatProxyModel::SourceItem::findChild(int proxyPos)
   int start = 0;
   int end = _childs.count() - 1;
   int pivot;
-  while(end - start != 1) {
+  while(end - start > 1) {
     pivot = (end + start) / 2;
     if(_childs[pivot]->pos() > proxyPos)
       end = pivot;