--- a/aknlayoutcompiler/src/LayPerfWriter.cpp Thu Dec 17 09:14:18 2009 +0200
+++ b/aknlayoutcompiler/src/LayPerfWriter.cpp Mon Jan 18 21:13:05 2010 +0200
@@ -22,7 +22,7 @@
#include "Layout.h" // for constants
#include "CodeGenConsts.h"
-#include <cdlcompilertoolkit/cdltkutil.h>
+#include <CdlCompilerToolkit/CdlTkUtil.h>
#include <iostream>
#include <sstream>
@@ -96,7 +96,7 @@
out << "\n// Layout MACROs for LAF Table : ";
out << iTable.Name() << endl;
- for (int i=0; i<iTable.size(); ++i)
+ for (unsigned int i=0; i<iTable.size(); ++i)
{
WriteWindowLine(out, *iTable[i]);
}
@@ -205,7 +205,7 @@
out << "// Layout MACROs for LAF Table : ";
out << iTable.Name() << endl;
- for (int i=0; i<iTable.size(); ++i)
+ for (unsigned int i=0; i<iTable.size(); ++i)
{
WriteTextLine(out, *iTable[i]);
}
@@ -255,7 +255,7 @@
string ifName(LayoutToCdl::InterfaceName(cdlFileName));
out << "// function implementations: " << endl;
- int tableId = 0;
+ unsigned int tableId = 0;
for (TLayout::iterator pTab = iLayout.begin(); pTab != iLayout.end(); ++pTab)
{
TLayPerfTableWriter writer(**pTab, ifName, tableId++);