src/configDialog.cpp

changeset 527
47c068f2e7e3
parent 526
b29b6fc45ba9
child 529
c294b2070185
--- a/src/configDialog.cpp	Tue Oct 22 19:22:15 2013 +0300
+++ b/src/configDialog.cpp	Tue Oct 22 19:28:45 2013 +0300
@@ -441,7 +441,7 @@
 // Remove a quick color
 // -----------------------------------------------------------------------------
 void ConfigDialog::slot_delColor()
-{	if (ui->quickColorList->selectedItems().size() == 0)
+{	if (ui->quickColorList->selectedItems().isEmpty())
 		return;
 
 	QListWidgetItem* item = ui->quickColorList->selectedItems() [0];
@@ -455,7 +455,7 @@
 void ConfigDialog::slot_moveColor()
 {	const bool up = (static_cast<QPushButton*> (sender()) == ui->quickColor_moveUp);
 
-	if (ui->quickColorList->selectedItems().size() == 0)
+	if (ui->quickColorList->selectedItems().isEmpty())
 		return;
 
 	QListWidgetItem* item = ui->quickColorList->selectedItems() [0];
@@ -544,7 +544,7 @@
 // Which quick color is currently selected?
 // -----------------------------------------------------------------------------
 QListWidgetItem* ConfigDialog::getSelectedQuickColor()
-{	if (ui->quickColorList->selectedItems().size() == 0)
+{	if (ui->quickColorList->selectedItems().isEmpty())
 		return null;
 
 	return ui->quickColorList->selectedItems() [0];

mercurial