diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-24 01:34:11 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-24 01:34:11 +0000 |
commit | 6ac820fd5863029b7b90f07f8a46436b79976d40 (patch) | |
tree | 4c9e7bc801d22f008ff0aae861c8a677905f9a06 /editors | |
parent | 9019ec22684caaa0060133bcbe217b4664d39462 (diff) | |
download | ports-6ac820fd5863029b7b90f07f8a46436b79976d40.tar.gz ports-6ac820fd5863029b7b90f07f8a46436b79976d40.zip |
More build fixes for Alpha.
Notes
Notes:
svn path=/head/; revision=89132
Diffstat (limited to 'editors')
6 files changed, 264 insertions, 0 deletions
diff --git a/editors/AbiWord2/files/patch-src_wp_impexp_xp_ie_Table.cpp b/editors/AbiWord2/files/patch-src_wp_impexp_xp_ie_Table.cpp new file mode 100644 index 000000000000..a3f8a7e7905e --- /dev/null +++ b/editors/AbiWord2/files/patch-src_wp_impexp_xp_ie_Table.cpp @@ -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++; diff --git a/editors/AbiWord2/files/patch-src_wp_impexp_xp_ie_imp_RTF.cpp b/editors/AbiWord2/files/patch-src_wp_impexp_xp_ie_imp_RTF.cpp new file mode 100644 index 000000000000..90ad29c85034 --- /dev/null +++ b/editors/AbiWord2/files/patch-src_wp_impexp_xp_ie_imp_RTF.cpp @@ -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); diff --git a/editors/abiword-devel/files/patch-src_wp_impexp_xp_ie_Table.cpp b/editors/abiword-devel/files/patch-src_wp_impexp_xp_ie_Table.cpp new file mode 100644 index 000000000000..a3f8a7e7905e --- /dev/null +++ b/editors/abiword-devel/files/patch-src_wp_impexp_xp_ie_Table.cpp @@ -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++; diff --git a/editors/abiword-devel/files/patch-src_wp_impexp_xp_ie_imp_RTF.cpp b/editors/abiword-devel/files/patch-src_wp_impexp_xp_ie_imp_RTF.cpp new file mode 100644 index 000000000000..90ad29c85034 --- /dev/null +++ b/editors/abiword-devel/files/patch-src_wp_impexp_xp_ie_imp_RTF.cpp @@ -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); diff --git a/editors/abiword/files/patch-src_wp_impexp_xp_ie_Table.cpp b/editors/abiword/files/patch-src_wp_impexp_xp_ie_Table.cpp new file mode 100644 index 000000000000..a3f8a7e7905e --- /dev/null +++ b/editors/abiword/files/patch-src_wp_impexp_xp_ie_Table.cpp @@ -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++; diff --git a/editors/abiword/files/patch-src_wp_impexp_xp_ie_imp_RTF.cpp b/editors/abiword/files/patch-src_wp_impexp_xp_ie_imp_RTF.cpp new file mode 100644 index 000000000000..90ad29c85034 --- /dev/null +++ b/editors/abiword/files/patch-src_wp_impexp_xp_ie_imp_RTF.cpp @@ -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); |