summaryrefslogtreecommitdiff
path: root/patches/mscodec/mscodec-uui.diff
diff options
context:
space:
mode:
Diffstat (limited to 'patches/mscodec/mscodec-uui.diff')
-rw-r--r--patches/mscodec/mscodec-uui.diff45
1 files changed, 0 insertions, 45 deletions
diff --git a/patches/mscodec/mscodec-uui.diff b/patches/mscodec/mscodec-uui.diff
deleted file mode 100644
index 3ed5947c8..000000000
--- a/patches/mscodec/mscodec-uui.diff
+++ /dev/null
@@ -1,45 +0,0 @@
-Index: uui/source/iahndl.cxx
-===================================================================
-RCS file: /cvs/ucb/uui/source/iahndl.cxx,v
-retrieving revision 1.41
-retrieving revision 1.41.26.1
-diff -u -r1.41 -r1.41.26.1
---- uui/source/iahndl.cxx 21 Apr 2004 12:01:16 -0000 1.41
-+++ uui/source/iahndl.cxx 17 Jul 2004 14:45:23 -0000 1.41.26.1
-@@ -2348,23 +2348,29 @@
-
- rtl::OUString aMessage;
- {
-- enum Source { SOURCE_DEFAULT, SOURCE_CNT, SOURCE_UUI };
-- static char const * const aManager[3]
-+ enum Source { SOURCE_DEFAULT, SOURCE_CNT, SOURCE_SVX, SOURCE_UUI };
-+ static char const * const aManager[4]
- = { 0,
- CREATEVERSIONRESMGR_NAME(cnt),
-+ CREATEVERSIONRESMGR_NAME(svx),
- CREATEVERSIONRESMGR_NAME(uui) };
-- static USHORT const aId[3]
-+ static USHORT const aId[4]
- = { RID_ERRHDL,
- RID_CHAOS_START + 12,
- // cf. chaos/source/inc/cntrids.hrc, where
- // #define RID_CHAOS_ERRHDL (RID_CHAOS_START + 12)
-+ RID_SVX_START + 350, // RID_SVXERRCODE
- RID_UUI_ERRHDL };
-- Source eSource = nErrorCode >= ERRCODE_AREA_TOOLS
-- && nErrorCode < ERRCODE_AREA_LIB1 ?
-+ ErrCode nErrorId = nErrorCode & ~ERRCODE_WARNING_MASK;
-+ Source eSource = nErrorId >= ERRCODE_AREA_TOOLS
-+ && nErrorId < ERRCODE_AREA_LIB1 ?
- SOURCE_DEFAULT :
-- nErrorCode >= ERRCODE_AREA_CHAOS
-- && nErrorCode < ERRCODE_AREA_CHAOS_END ?
-+ nErrorId >= ERRCODE_AREA_CHAOS
-+ && nErrorId < ERRCODE_AREA_CHAOS_END ?
- SOURCE_CNT :
-+ nErrorId >= ERRCODE_AREA_SVX
-+ && nErrorId <= ERRCODE_AREA_SVX_END ?
-+ SOURCE_SVX :
- SOURCE_UUI;
-
- vos::OGuard aGuard(Application::GetSolarMutex());