diff options
-rw-r--r-- | sd/sdi/_drvwsh.sdi | 9 | ||||
-rw-r--r-- | sd/sdi/outlnvsh.sdi | 9 | ||||
-rw-r--r-- | sd/source/ui/view/drviews3.cxx | 10 | ||||
-rw-r--r-- | sd/source/ui/view/outlnvsh.cxx | 10 |
4 files changed, 30 insertions, 8 deletions
diff --git a/sd/sdi/_drvwsh.sdi b/sd/sdi/_drvwsh.sdi index e15739a4eb50..803f45c4379d 100644 --- a/sd/sdi/_drvwsh.sdi +++ b/sd/sdi/_drvwsh.sdi @@ -2,9 +2,9 @@ * * $RCSfile: _drvwsh.sdi,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: sj $ $Date: 2001-06-12 13:50:35 $ + * last change: $Author: dl $ $Date: 2001-08-20 11:17:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2191,5 +2191,10 @@ interface DrawView : View ExecMethod = FuSupport ; StateMethod = GetMenuState ; ] + SID_OPT_LOCALE_CHANGED // ole : no, status : ? + [ + ExecMethod = ExecCtrl ; + StateMethod = GetCtrlState ; + ] } diff --git a/sd/sdi/outlnvsh.sdi b/sd/sdi/outlnvsh.sdi index d0385810bc51..178f914b49b5 100644 --- a/sd/sdi/outlnvsh.sdi +++ b/sd/sdi/outlnvsh.sdi @@ -2,9 +2,9 @@ * * $RCSfile: outlnvsh.sdi,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: sj $ $Date: 2001-06-12 13:51:33 $ + * last change: $Author: dl $ $Date: 2001-08-20 11:18:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -504,6 +504,11 @@ interface OutlineView : View ExecMethod = FuSupport ; StateMethod = GetCtrlState ; ] + SID_OPT_LOCALE_CHANGED // ole : no, status : ? + [ + ExecMethod = ExecCtrl ; + StateMethod = GetCtrlState ; + ] } shell SdOutlineViewShell : SfxViewShell diff --git a/sd/source/ui/view/drviews3.cxx b/sd/source/ui/view/drviews3.cxx index 146d7cff955d..cd325ccd243e 100644 --- a/sd/source/ui/view/drviews3.cxx +++ b/sd/source/ui/view/drviews3.cxx @@ -2,9 +2,9 @@ * * $RCSfile: drviews3.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: dl $ $Date: 2001-04-18 13:45:55 $ + * last change: $Author: dl $ $Date: 2001-08-20 11:22:54 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -490,6 +490,12 @@ void __EXPORT SdDrawViewShell::ExecCtrl(SfxRequest& rReq) } break; + case SID_OPT_LOCALE_CHANGED: + { + pWindow->Invalidate(); + rReq.Done(); + } + default: break; } diff --git a/sd/source/ui/view/outlnvsh.cxx b/sd/source/ui/view/outlnvsh.cxx index 84d98146c9b9..76532291d9da 100644 --- a/sd/source/ui/view/outlnvsh.cxx +++ b/sd/source/ui/view/outlnvsh.cxx @@ -2,9 +2,9 @@ * * $RCSfile: outlnvsh.cxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: nn $ $Date: 2001-07-19 20:32:39 $ + * last change: $Author: dl $ $Date: 2001-08-20 11:23:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -554,6 +554,12 @@ void SdOutlineViewShell::ExecCtrl(SfxRequest &rReq) break; } + case SID_OPT_LOCALE_CHANGED: + { + pOlView->GetOutliner()->UpdateFields(); + rReq.Done(); + } + default: break; } |