src/Colors.cc

changeset 690
9e9c52ca955e
parent 644
93dcd1a0e4bd
child 702
8e3058cb9281
--- a/src/Colors.cc	Sun Mar 09 14:04:06 2014 +0200
+++ b/src/Colors.cc	Sun Mar 09 14:59:46 2014 +0200
@@ -32,11 +32,11 @@
 static LDColor* g_LDColors[MAX_COLORS];
 
 // =============================================================================
-// -----------------------------------------------------------------------------
+// =============================================================================
 void initColors()
 {
 	LDColor* col;
-	log ("%1: initializing color information.\n", __func__);
+	print ("Initializing color information.\n");
 
 	// Always make sure there's 16 and 24 available. They're special like that.
 	col = new LDColor;
@@ -52,7 +52,7 @@
 }
 
 // =============================================================================
-// -----------------------------------------------------------------------------
+// =============================================================================
 LDColor* getColor (int colnum)
 {
 	// Check bounds
@@ -63,7 +63,7 @@
 }
 
 // =============================================================================
-// -----------------------------------------------------------------------------
+// =============================================================================
 void setColor (int colnum, LDColor* col)
 {
 	if (colnum < 0 || colnum >= MAX_COLORS)
@@ -73,7 +73,7 @@
 }
 
 // =============================================================================
-// -----------------------------------------------------------------------------
+// =============================================================================
 int luma (QColor& col)
 {
 	return (0.2126f * col.red()) +

mercurial