diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-11-10 15:06:12 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-11-10 15:06:12 +0000 |
commit | eceaaf89d03f6fd4cdb65ca3af37a4c578ca7240 (patch) | |
tree | 961b5dc2b23e1565f3cde7dd2820e4db78f0e85b /sd/source/ui/dlg | |
parent | aa6681f0eeb437c32313766dfb8fd6b3f4c01b48 (diff) |
CWS-TOOLING: integrate CWS cmcfixes50
2008-11-10 13:31:50 +0100 cmc r263517 : gio doesn't do anything useful for remote stuff wrt info
2008-11-06 00:11:47 +0100 cmc r263359 : #i93436# pile of other 64bit new gcc warnings
2008-11-05 00:39:03 +0100 cmc r263340 : i95856 let a ppc64 vanilla build succeed
2008-11-04 14:00:25 +0100 cmc r263320 : #i93436# useless const
2008-11-04 11:53:10 +0100 cmc r263314 : #i93436# ambiguous
2008-11-04 11:48:05 +0100 cmc r263313 : #i93436# add some braces
2008-11-04 11:29:24 +0100 cmc r263312 : #i93436# ambiguous
2008-11-04 10:53:46 +0100 cmc r263311 :
Diffstat (limited to 'sd/source/ui/dlg')
-rw-r--r-- | sd/source/ui/dlg/animobjs.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/dlg/sdpreslt.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/dlg/animobjs.cxx b/sd/source/ui/dlg/animobjs.cxx index 50db1d07cd44..0c05c58312b8 100644 --- a/sd/source/ui/dlg/animobjs.cxx +++ b/sd/source/ui/dlg/animobjs.cxx @@ -569,7 +569,7 @@ IMPL_LINK( AnimationWindow, ModifyTimeHdl, void *, EMPTYARG ) ULONG nPos = static_cast<ULONG>(aNumFldBitmap.GetValue() - 1); Time* pTime = static_cast< Time* >( aTimeList.GetObject( nPos ) ); - DBG_ASSERT( pTime, "Zeit nicht gefunden!" ) + DBG_ASSERT( pTime, "Zeit nicht gefunden!" ); *pTime = aTimeField.GetTime(); diff --git a/sd/source/ui/dlg/sdpreslt.cxx b/sd/source/ui/dlg/sdpreslt.cxx index 3046fda844d9..b57474906567 100644 --- a/sd/source/ui/dlg/sdpreslt.cxx +++ b/sd/source/ui/dlg/sdpreslt.cxx @@ -141,7 +141,7 @@ void SdPresLayoutDlg::Reset() if (*((String*)mpLayoutNames->GetObject(nName)) == maName) break; } - DBG_ASSERT(nName < mnLayoutCount, "Layout nicht gefunden") + DBG_ASSERT(nName < mnLayoutCount, "Layout nicht gefunden"); maVS.SelectItem((USHORT)nName + 1); // Inizes des ValueSets beginnen bei 1 |