summaryrefslogtreecommitdiff
path: root/sw/source/ui/chrdlg/chardlg.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-12-01 16:31:46 +0000
committerRüdiger Timm <rt@openoffice.org>2003-12-01 16:31:46 +0000
commita1a85825f03f6c999c1e7543977f0a637d951f7a (patch)
treecda1273a6efdf4470d7d2c71b5e69681034e16af /sw/source/ui/chrdlg/chardlg.cxx
parent13ad1c6cfea9f415e0480f0b3c327dce1c44564a (diff)
INTEGRATION: CWS ooo20031110 (1.16.234); FILE MERGED
2003/11/13 10:57:34 waratah 1.16.234.1: #i22301# correct the for scope problems in the code
Diffstat (limited to 'sw/source/ui/chrdlg/chardlg.cxx')
-rw-r--r--sw/source/ui/chrdlg/chardlg.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sw/source/ui/chrdlg/chardlg.cxx b/sw/source/ui/chrdlg/chardlg.cxx
index 8ff5b6056faf..1cb9075d4de4 100644
--- a/sw/source/ui/chrdlg/chardlg.cxx
+++ b/sw/source/ui/chrdlg/chardlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: chardlg.cxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: vg $ $Date: 2003-04-17 15:15:35 $
+ * last change: $Author: rt $ $Date: 2003-12-01 17:31:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -302,7 +302,9 @@ SwCharURLPage::SwCharURLPage( Window* pParent,
USHORT nCount = (USHORT)pList->Count();
if( nCount )
{
- for ( USHORT i = 0; i < nCount; i++ )
+ USHORT i;
+
+ for ( i = 0; i < nCount; i++ )
{
aTargetFrmLB.InsertEntry(*pList->GetObject(i));
}