More build fixes for Alpha.

This commit is contained in:
Joe Marcus Clarke 2003-09-24 01:34:11 +00:00
parent 9019ec2268
commit 6ac820fd58
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=89132
6 changed files with 264 additions and 0 deletions

View File

@ -0,0 +1,29 @@
--- src/wp/impexp/xp/ie_Table.cpp.orig Tue Sep 23 21:23:58 2003
+++ src/wp/impexp/xp/ie_Table.cpp Tue Sep 23 21:31:58 2003
@@ -1028,7 +1028,7 @@
UT_sint32 j = 0;
for(j=0; !bMatch && (j < static_cast<UT_sint32>(m_vecCellX.getItemCount())); j++)
{
- UT_sint32 prevX = reinterpret_cast<UT_sint32>(m_vecCellX.getNthItem(j));
+ UT_sint32 prevX = reinterpret_cast<long>(m_vecCellX.getNthItem(j));
UT_DEBUGMSG(("Prev cell %d cellx %d \n",j,prevX));
bool bLast = ((j-1) == szCurRow);
bMatch = doCellXMatch(prevX,curX,bLast);
@@ -1179,7 +1179,7 @@
sColWidth.clear();
for(i=0; i< static_cast<UT_sint32>(m_vecCellX.getItemCount()); i++)
{
- UT_sint32 iCellx = reinterpret_cast<UT_sint32>(m_vecCellX.getNthItem(i));
+ UT_sint32 iCellx = reinterpret_cast<long>(m_vecCellX.getNthItem(i));
xxx_UT_DEBUGMSG(("final cellx import cellx %d iPrev %x \n",iCellx,iPrev));
UT_sint32 iDiffCellx = iCellx - iPrev;
double dCellx = static_cast<double>(iDiffCellx)/1440.0 -dColSpace;
@@ -1377,7 +1377,7 @@
UT_sint32 iSub = 0;
for(i=0; !bFound && (i< static_cast<UT_sint32>(m_vecCellX.getItemCount())); i++)
{
- UT_sint32 icellx = reinterpret_cast<UT_sint32>(m_vecCellX.getNthItem(i));
+ UT_sint32 icellx = reinterpret_cast<long>(m_vecCellX.getNthItem(i));
if(icellx == -1)
{
iSub++;

View File

@ -0,0 +1,59 @@
--- src/wp/impexp/xp/ie_imp_RTF.cpp.orig Tue Sep 23 21:19:45 2003
+++ src/wp/impexp/xp/ie_imp_RTF.cpp Tue Sep 23 21:22:22 2003
@@ -1208,9 +1208,9 @@
m_iOverrideLevel = other.m_iOverrideLevel;
if(m_tabTypes.getItemCount() > 0)
{
- UT_uint32 dum = reinterpret_cast<UT_uint32>(m_tabTypes.getNthItem(0));
+ UT_uint32 dum = reinterpret_cast<unsigned long>(m_tabTypes.getNthItem(0));
m_curTabType = static_cast<eTabType>(dum);
- dum = reinterpret_cast<UT_uint32>(m_tabLeader.getNthItem(0));
+ dum = reinterpret_cast<unsigned long>(m_tabLeader.getNthItem(0));
m_curTabLeader = static_cast<eTabLeader>(dum);
}
else
@@ -2442,7 +2442,7 @@
{
if (colNum < m_colourTable.getItemCount())
{
- return reinterpret_cast<UT_uint32>(m_colourTable.getNthItem(colNum));
+ return reinterpret_cast<unsigned long>(m_colourTable.getNthItem(colNum));
}
else
{
@@ -2454,7 +2454,7 @@
{
if (colNum < m_colourTable.getItemCount())
{
- return reinterpret_cast<UT_sint32>(m_colourTable.getNthItem(colNum));
+ return reinterpret_cast<long>(m_colourTable.getNthItem(colNum));
}
else
{
@@ -6185,11 +6185,11 @@
if (i > 0)
propBuffer += ",";
- UT_sint32 tabTwips = reinterpret_cast<UT_sint32>(m_currentRTFState.m_paraProps.m_tabStops.getNthItem(i));
+ UT_sint32 tabTwips = reinterpret_cast<long>(m_currentRTFState.m_paraProps.m_tabStops.getNthItem(i));
double tabIn = tabTwips/(20.0*72.);
- UT_uint32 idum = reinterpret_cast<UT_uint32>(m_currentRTFState.m_paraProps.m_tabTypes.getNthItem(i));
+ UT_uint32 idum = reinterpret_cast<unsigned long>(m_currentRTFState.m_paraProps.m_tabTypes.getNthItem(i));
eTabType tabType = static_cast<eTabType>(idum);
- idum = reinterpret_cast<UT_uint32>((m_currentRTFState.m_paraProps.m_tabLeader.getNthItem(i)));
+ idum = reinterpret_cast<unsigned long>((m_currentRTFState.m_paraProps.m_tabLeader.getNthItem(i)));
eTabLeader tabLeader = static_cast<eTabLeader>(idum);
char cType = ' ';
switch(tabType)
@@ -9654,9 +9654,9 @@
if (i > 0)
strcat(propBuffer, ",");
- UT_sint32 tabTwips = reinterpret_cast<UT_sint32>(pParas->m_tabStops.getNthItem(i));
+ UT_sint32 tabTwips = reinterpret_cast<long>(pParas->m_tabStops.getNthItem(i));
double tabIn = tabTwips/(20.0*72.);
- UT_uint32 idum = reinterpret_cast<UT_uint32>(pParas->m_tabTypes.getNthItem(i));
+ UT_uint32 idum = reinterpret_cast<unsigned long>(pParas->m_tabTypes.getNthItem(i));
eTabType tabType = static_cast<eTabType>(idum);
idum = (UT_uint32) (pParas->m_tabLeader.getNthItem(i));
eTabLeader tabLeader = static_cast<eTabLeader>(idum);

View File

@ -0,0 +1,29 @@
--- src/wp/impexp/xp/ie_Table.cpp.orig Tue Sep 23 21:23:58 2003
+++ src/wp/impexp/xp/ie_Table.cpp Tue Sep 23 21:31:58 2003
@@ -1028,7 +1028,7 @@
UT_sint32 j = 0;
for(j=0; !bMatch && (j < static_cast<UT_sint32>(m_vecCellX.getItemCount())); j++)
{
- UT_sint32 prevX = reinterpret_cast<UT_sint32>(m_vecCellX.getNthItem(j));
+ UT_sint32 prevX = reinterpret_cast<long>(m_vecCellX.getNthItem(j));
UT_DEBUGMSG(("Prev cell %d cellx %d \n",j,prevX));
bool bLast = ((j-1) == szCurRow);
bMatch = doCellXMatch(prevX,curX,bLast);
@@ -1179,7 +1179,7 @@
sColWidth.clear();
for(i=0; i< static_cast<UT_sint32>(m_vecCellX.getItemCount()); i++)
{
- UT_sint32 iCellx = reinterpret_cast<UT_sint32>(m_vecCellX.getNthItem(i));
+ UT_sint32 iCellx = reinterpret_cast<long>(m_vecCellX.getNthItem(i));
xxx_UT_DEBUGMSG(("final cellx import cellx %d iPrev %x \n",iCellx,iPrev));
UT_sint32 iDiffCellx = iCellx - iPrev;
double dCellx = static_cast<double>(iDiffCellx)/1440.0 -dColSpace;
@@ -1377,7 +1377,7 @@
UT_sint32 iSub = 0;
for(i=0; !bFound && (i< static_cast<UT_sint32>(m_vecCellX.getItemCount())); i++)
{
- UT_sint32 icellx = reinterpret_cast<UT_sint32>(m_vecCellX.getNthItem(i));
+ UT_sint32 icellx = reinterpret_cast<long>(m_vecCellX.getNthItem(i));
if(icellx == -1)
{
iSub++;

View File

@ -0,0 +1,59 @@
--- src/wp/impexp/xp/ie_imp_RTF.cpp.orig Tue Sep 23 21:19:45 2003
+++ src/wp/impexp/xp/ie_imp_RTF.cpp Tue Sep 23 21:22:22 2003
@@ -1208,9 +1208,9 @@
m_iOverrideLevel = other.m_iOverrideLevel;
if(m_tabTypes.getItemCount() > 0)
{
- UT_uint32 dum = reinterpret_cast<UT_uint32>(m_tabTypes.getNthItem(0));
+ UT_uint32 dum = reinterpret_cast<unsigned long>(m_tabTypes.getNthItem(0));
m_curTabType = static_cast<eTabType>(dum);
- dum = reinterpret_cast<UT_uint32>(m_tabLeader.getNthItem(0));
+ dum = reinterpret_cast<unsigned long>(m_tabLeader.getNthItem(0));
m_curTabLeader = static_cast<eTabLeader>(dum);
}
else
@@ -2442,7 +2442,7 @@
{
if (colNum < m_colourTable.getItemCount())
{
- return reinterpret_cast<UT_uint32>(m_colourTable.getNthItem(colNum));
+ return reinterpret_cast<unsigned long>(m_colourTable.getNthItem(colNum));
}
else
{
@@ -2454,7 +2454,7 @@
{
if (colNum < m_colourTable.getItemCount())
{
- return reinterpret_cast<UT_sint32>(m_colourTable.getNthItem(colNum));
+ return reinterpret_cast<long>(m_colourTable.getNthItem(colNum));
}
else
{
@@ -6185,11 +6185,11 @@
if (i > 0)
propBuffer += ",";
- UT_sint32 tabTwips = reinterpret_cast<UT_sint32>(m_currentRTFState.m_paraProps.m_tabStops.getNthItem(i));
+ UT_sint32 tabTwips = reinterpret_cast<long>(m_currentRTFState.m_paraProps.m_tabStops.getNthItem(i));
double tabIn = tabTwips/(20.0*72.);
- UT_uint32 idum = reinterpret_cast<UT_uint32>(m_currentRTFState.m_paraProps.m_tabTypes.getNthItem(i));
+ UT_uint32 idum = reinterpret_cast<unsigned long>(m_currentRTFState.m_paraProps.m_tabTypes.getNthItem(i));
eTabType tabType = static_cast<eTabType>(idum);
- idum = reinterpret_cast<UT_uint32>((m_currentRTFState.m_paraProps.m_tabLeader.getNthItem(i)));
+ idum = reinterpret_cast<unsigned long>((m_currentRTFState.m_paraProps.m_tabLeader.getNthItem(i)));
eTabLeader tabLeader = static_cast<eTabLeader>(idum);
char cType = ' ';
switch(tabType)
@@ -9654,9 +9654,9 @@
if (i > 0)
strcat(propBuffer, ",");
- UT_sint32 tabTwips = reinterpret_cast<UT_sint32>(pParas->m_tabStops.getNthItem(i));
+ UT_sint32 tabTwips = reinterpret_cast<long>(pParas->m_tabStops.getNthItem(i));
double tabIn = tabTwips/(20.0*72.);
- UT_uint32 idum = reinterpret_cast<UT_uint32>(pParas->m_tabTypes.getNthItem(i));
+ UT_uint32 idum = reinterpret_cast<unsigned long>(pParas->m_tabTypes.getNthItem(i));
eTabType tabType = static_cast<eTabType>(idum);
idum = (UT_uint32) (pParas->m_tabLeader.getNthItem(i));
eTabLeader tabLeader = static_cast<eTabLeader>(idum);

View File

@ -0,0 +1,29 @@
--- src/wp/impexp/xp/ie_Table.cpp.orig Tue Sep 23 21:23:58 2003
+++ src/wp/impexp/xp/ie_Table.cpp Tue Sep 23 21:31:58 2003
@@ -1028,7 +1028,7 @@
UT_sint32 j = 0;
for(j=0; !bMatch && (j < static_cast<UT_sint32>(m_vecCellX.getItemCount())); j++)
{
- UT_sint32 prevX = reinterpret_cast<UT_sint32>(m_vecCellX.getNthItem(j));
+ UT_sint32 prevX = reinterpret_cast<long>(m_vecCellX.getNthItem(j));
UT_DEBUGMSG(("Prev cell %d cellx %d \n",j,prevX));
bool bLast = ((j-1) == szCurRow);
bMatch = doCellXMatch(prevX,curX,bLast);
@@ -1179,7 +1179,7 @@
sColWidth.clear();
for(i=0; i< static_cast<UT_sint32>(m_vecCellX.getItemCount()); i++)
{
- UT_sint32 iCellx = reinterpret_cast<UT_sint32>(m_vecCellX.getNthItem(i));
+ UT_sint32 iCellx = reinterpret_cast<long>(m_vecCellX.getNthItem(i));
xxx_UT_DEBUGMSG(("final cellx import cellx %d iPrev %x \n",iCellx,iPrev));
UT_sint32 iDiffCellx = iCellx - iPrev;
double dCellx = static_cast<double>(iDiffCellx)/1440.0 -dColSpace;
@@ -1377,7 +1377,7 @@
UT_sint32 iSub = 0;
for(i=0; !bFound && (i< static_cast<UT_sint32>(m_vecCellX.getItemCount())); i++)
{
- UT_sint32 icellx = reinterpret_cast<UT_sint32>(m_vecCellX.getNthItem(i));
+ UT_sint32 icellx = reinterpret_cast<long>(m_vecCellX.getNthItem(i));
if(icellx == -1)
{
iSub++;

View File

@ -0,0 +1,59 @@
--- src/wp/impexp/xp/ie_imp_RTF.cpp.orig Tue Sep 23 21:19:45 2003
+++ src/wp/impexp/xp/ie_imp_RTF.cpp Tue Sep 23 21:22:22 2003
@@ -1208,9 +1208,9 @@
m_iOverrideLevel = other.m_iOverrideLevel;
if(m_tabTypes.getItemCount() > 0)
{
- UT_uint32 dum = reinterpret_cast<UT_uint32>(m_tabTypes.getNthItem(0));
+ UT_uint32 dum = reinterpret_cast<unsigned long>(m_tabTypes.getNthItem(0));
m_curTabType = static_cast<eTabType>(dum);
- dum = reinterpret_cast<UT_uint32>(m_tabLeader.getNthItem(0));
+ dum = reinterpret_cast<unsigned long>(m_tabLeader.getNthItem(0));
m_curTabLeader = static_cast<eTabLeader>(dum);
}
else
@@ -2442,7 +2442,7 @@
{
if (colNum < m_colourTable.getItemCount())
{
- return reinterpret_cast<UT_uint32>(m_colourTable.getNthItem(colNum));
+ return reinterpret_cast<unsigned long>(m_colourTable.getNthItem(colNum));
}
else
{
@@ -2454,7 +2454,7 @@
{
if (colNum < m_colourTable.getItemCount())
{
- return reinterpret_cast<UT_sint32>(m_colourTable.getNthItem(colNum));
+ return reinterpret_cast<long>(m_colourTable.getNthItem(colNum));
}
else
{
@@ -6185,11 +6185,11 @@
if (i > 0)
propBuffer += ",";
- UT_sint32 tabTwips = reinterpret_cast<UT_sint32>(m_currentRTFState.m_paraProps.m_tabStops.getNthItem(i));
+ UT_sint32 tabTwips = reinterpret_cast<long>(m_currentRTFState.m_paraProps.m_tabStops.getNthItem(i));
double tabIn = tabTwips/(20.0*72.);
- UT_uint32 idum = reinterpret_cast<UT_uint32>(m_currentRTFState.m_paraProps.m_tabTypes.getNthItem(i));
+ UT_uint32 idum = reinterpret_cast<unsigned long>(m_currentRTFState.m_paraProps.m_tabTypes.getNthItem(i));
eTabType tabType = static_cast<eTabType>(idum);
- idum = reinterpret_cast<UT_uint32>((m_currentRTFState.m_paraProps.m_tabLeader.getNthItem(i)));
+ idum = reinterpret_cast<unsigned long>((m_currentRTFState.m_paraProps.m_tabLeader.getNthItem(i)));
eTabLeader tabLeader = static_cast<eTabLeader>(idum);
char cType = ' ';
switch(tabType)
@@ -9654,9 +9654,9 @@
if (i > 0)
strcat(propBuffer, ",");
- UT_sint32 tabTwips = reinterpret_cast<UT_sint32>(pParas->m_tabStops.getNthItem(i));
+ UT_sint32 tabTwips = reinterpret_cast<long>(pParas->m_tabStops.getNthItem(i));
double tabIn = tabTwips/(20.0*72.);
- UT_uint32 idum = reinterpret_cast<UT_uint32>(pParas->m_tabTypes.getNthItem(i));
+ UT_uint32 idum = reinterpret_cast<unsigned long>(pParas->m_tabTypes.getNthItem(i));
eTabType tabType = static_cast<eTabType>(idum);
idum = (UT_uint32) (pParas->m_tabLeader.getNthItem(i));
eTabLeader tabLeader = static_cast<eTabLeader>(idum);