src/configDialog.cpp

changeset 421
7d26db0be944
parent 417
14bfeed046f3
child 430
8458cf2719d1
--- a/src/configDialog.cpp	Fri Aug 02 15:57:03 2013 +0300
+++ b/src/configDialog.cpp	Fri Aug 02 16:33:30 2013 +0300
@@ -55,7 +55,7 @@
 // =============================================================================
 ConfigDialog::ConfigDialog (ForgeWindow* parent) : QDialog (parent) {
 	ui = new Ui_ConfigUI;
-	ui->setupUi( this );
+	ui->setupUi (this);
 	
 	initMainTab();
 	initShortcutsTab();
@@ -84,9 +84,8 @@
 	connect (ui->mainColorButton, SIGNAL (clicked()),
 		this, SLOT (slot_setGLForeground()));
 	
-	ui->mainColorAlpha->setValue( gl_maincolor_alpha * 10.0f );
-	
 	// Sliders
+	ui->mainColorAlpha->setValue (gl_maincolor_alpha * 10.0f);
 	ui->lineThickness->setValue (gl_linethickness);
 	
 	// Checkboxes
@@ -106,7 +105,7 @@
 #define act(N) addShortcut (key_##N, ACTION(N), i);
 #include "actions.h"
 	
-	ui->shortcutsList->setSortingEnabled( true );
+	ui->shortcutsList->setSortingEnabled (true);
 	ui->shortcutsList->sortItems();
 	
 	connect (ui->shortcut_set, SIGNAL (clicked()), this, SLOT (slot_setShortcut()));
@@ -156,7 +155,7 @@
 		*anglabel = new QLabel ("Angle");
 	short i = 1;
 	
-	for (QLabel * label : initlist<QLabel*> ( { xlabel, ylabel, zlabel, anglabel })) {
+	for (QLabel* label : initlist<QLabel*> ({ xlabel, ylabel, zlabel, anglabel })) {
 		label->setAlignment (Qt::AlignCenter);
 		gridlayout->addWidget (label, 0, i++);
 	}
@@ -264,7 +263,7 @@
 // =============================================================================
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 // =============================================================================
-void ConfigDialog::updateQuickColorList( LDQuickColor* sel ) {
+void ConfigDialog::updateQuickColorList (LDQuickColor* sel) {
 	for (QListWidgetItem* item : quickColorItems)
 		delete item;
 	
@@ -449,8 +448,8 @@
 {
 	QList<ShortcutListItem*> out;
 	
-	for( QListWidgetItem * entry : ui->shortcutsList->selectedItems() )
-		out << static_cast<ShortcutListItem*>( entry );
+	for (QListWidgetItem* entry : ui->shortcutsList->selectedItems())
+		out << static_cast<ShortcutListItem*> (entry);
 	
 	return out;
 }

mercurial