[PC-BSD Commits] r21537 - pcbsd-projects/PCDM
svn at pcbsd.org
svn at pcbsd.org
Fri Feb 15 08:10:44 PST 2013
Author: kenmoore
Date: 2013-02-15 16:10:44 +0000 (Fri, 15 Feb 2013)
New Revision: 21537
Modified:
pcbsd-projects/PCDM/themeStruct.cpp
Log:
Spacers are now fixed, turn off the debugging
Modified: pcbsd-projects/PCDM/themeStruct.cpp
===================================================================
--- pcbsd-projects/PCDM/themeStruct.cpp 2013-02-15 16:05:16 UTC (rev 21536)
+++ pcbsd-projects/PCDM/themeStruct.cpp 2013-02-15 16:10:44 UTC (rev 21537)
@@ -56,7 +56,7 @@
items[index].isVertical = (val.section("::",0,0).toLower() == "vertical");
//Now get the location
val = val.section("::",1,1).remove("[").remove("]").simplified();
- qDebug() << "ADDSPACER:" << line << val;
+ //qDebug() << "ADDSPACER:" << line << val;
items[index].x1 = val.section(",",0,0).section("-",0,0).toInt();
items[index].x2 = -1;
items[index].y1 = val.section(",",1,1).section("-",0,0).toInt();
@@ -193,7 +193,7 @@
}else{
ret = items[index].iconSize;
}
- //qDebug() << "Theme:" << item << "Size:" << ret;
+ qDebug() << "Theme:" << item << "Size:" << ret;
return ret;
}
@@ -217,7 +217,7 @@
ret = span +1; //add 1 for the end point
}
}
- qDebug() << "Theme:" << item << variable << ret;
+ //qDebug() << "Theme:" << item << variable << ret;
return ret; //catch for errors;
}
@@ -235,6 +235,6 @@
spc << isvert + "::" + QString::number(items[i].x1) +"::"+ QString::number(items[i].y1);
}
}
- qDebug() << "Spacers:" << spc;
+ //qDebug() << "Spacers:" << spc;
return spc;
}
More information about the Commits
mailing list