src/dialogs/configdialog.cpp

changeset 1063
1f15c52c11f6
parent 1023
9450ac3cd930
child 1064
4c7a353cf583
--- a/src/dialogs/configdialog.cpp	Sat Jan 28 13:49:09 2017 +0200
+++ b/src/dialogs/configdialog.cpp	Sat Jan 28 14:01:19 2017 +0200
@@ -411,7 +411,7 @@
 	{
 		ColorToolbarItem newentry (value, nullptr);
 		item = getSelectedQuickColor();
-		int idx = (item) ? getItemRow (item, quickColorItems) + 1 : quickColorItems.size();
+		int idx = (item) ? getItemRow (item, quickColorItems) + 1 : length(quickColorItems);
 		quickColors.insert (idx, newentry);
 		entry = &quickColors[idx];
 	}
@@ -446,7 +446,7 @@
 	int idx = getItemRow (item, quickColorItems);
 	int dest = up ? (idx - 1) : (idx + 1);
 
-	if (dest < 0 or dest >= quickColorItems.size())
+	if (dest < 0 or dest >= length(quickColorItems))
 		return; // destination out of bounds
 
 	qSwap (quickColors[dest], quickColors[idx]);
@@ -460,7 +460,7 @@
 void ConfigDialog::slot_addColorSeparator()
 {
 	quickColors << ColorToolbarItem::makeSeparator();
-	updateQuickColorList (&quickColors[quickColors.size() - 1]);
+	updateQuickColorList (&quickColors[length(quickColors) - 1]);
 }
 
 //
@@ -555,7 +555,7 @@
 {
 	QList<ShortcutListItem*> sel = getShortcutSelection();
 
-	if (sel.size() < 1)
+	if (length(sel) < 1)
 		return;
 
 	ShortcutListItem* item = sel[0];

mercurial