diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2003-12-01 16:36:18 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2003-12-01 16:36:18 +0000 |
commit | c8230dbf9788ab3da20f23d7980e815b85268fdc (patch) | |
tree | 9cc2c3fbccdd647e28c11d9e3ba242f4a6692664 /sw/source/ui/uiview/viewtab.cxx | |
parent | 7d18425364604ee4395167a3cf779e72fd9d7899 (diff) |
INTEGRATION: CWS ooo20031110 (1.20.168); FILE MERGED
2003/11/13 10:57:51 waratah 1.20.168.1: #i22301# correct the for scope problems in the code
Diffstat (limited to 'sw/source/ui/uiview/viewtab.cxx')
-rw-r--r-- | sw/source/ui/uiview/viewtab.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sw/source/ui/uiview/viewtab.cxx b/sw/source/ui/uiview/viewtab.cxx index 7a609e49f5..13025b2753 100644 --- a/sw/source/ui/uiview/viewtab.cxx +++ b/sw/source/ui/uiview/viewtab.cxx @@ -2,9 +2,9 @@ * * $RCSfile: viewtab.cxx,v $ * - * $Revision: 1.20 $ + * $Revision: 1.21 $ * - * last change: $Author: vg $ $Date: 2003-06-20 09:39:00 $ + * last change: $Author: rt $ $Date: 2003-12-01 17:36:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -820,7 +820,9 @@ void SwView::ExecTabWin( SfxRequest& rReq ) const SvxTabStopItem& rTabStops = (const SvxTabStopItem&)aSet.Get(RES_PARATR_TABSTOP); // Haben wir einen Tab an Stelle Null - for ( USHORT i = 0; i < rTabStops.Count(); ++i ) + USHORT i; + + for ( i = 0; i < rTabStops.Count(); ++i ) if ( rTabStops[i].GetTabPos() == 0 ) break; |