src/colors.cpp

changeset 421
7d26db0be944
parent 406
5371baa17346
child 455
c5d14d112034
--- a/src/colors.cpp	Fri Aug 02 15:57:03 2013 +0300
+++ b/src/colors.cpp	Fri Aug 02 16:33:30 2013 +0300
@@ -27,9 +27,8 @@
 static LDColor* g_LDColors[MAX_COLORS];
 
 void initColors() {
-	print( "%1: initializing color information.\n", __func__ );
-	
 	LDColor* col;
+	print ("%1: initializing color information.\n", __func__);
 	
 	// Always make sure there's 16 and 24 available. They're special like that.
 	col = new LDColor;
@@ -48,9 +47,9 @@
 
 // =============================================================================
 // -----------------------------------------------------------------------------
-LDColor* getColor( short colnum ) {
+LDColor* getColor (short colnum) {
 	// Check bounds
-	if( colnum < 0 || colnum >= MAX_COLORS )
+	if (colnum < 0 || colnum >= MAX_COLORS)
 		return null;
 	
 	return g_LDColors[colnum];
@@ -58,17 +57,16 @@
 
 // =============================================================================
 // -----------------------------------------------------------------------------
-void setColor( short colnum, LDColor* col ) {
-	if( colnum < 0 || colnum >= MAX_COLORS )
+void setColor (short colnum, LDColor* col) {
+	if (colnum < 0 || colnum >= MAX_COLORS)
 		return;
 	
 	g_LDColors[colnum] = col;
 }
 
 // =============================================================================
-uchar luma( QColor& col )
-{
-	return ( 0.2126f * col.red()) +
-	       ( 0.7152f * col.green()) +
-	       ( 0.0722f * col.blue() );
+uchar luma (QColor& col) {
+	return (0.2126f * col.red()) +
+	       (0.7152f * col.green()) +
+	       (0.0722f * col.blue());
 }
\ No newline at end of file

mercurial