Kaydet (Commit) f0bf6a41 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Olivier Hallot

Fix typo deactive

Change-Id: I68a87a9435784f949f1e7b730270641bd8e05b43
Reviewed-on: https://gerrit.libreoffice.org/63149
Tested-by: Jenkins
Reviewed-by: 's avatarOlivier Hallot <olivier.hallot@libreoffice.org>
üst 44754323
...@@ -45,7 +45,7 @@ typedef ::std::vector< css::uno::Reference< css::frame::XFrame > > TFrameContai ...@@ -45,7 +45,7 @@ typedef ::std::vector< css::uno::Reference< css::frame::XFrame > > TFrameContai
@descr Every object of frame, task or desktop hold reference to his children. These container is used as helper @descr Every object of frame, task or desktop hold reference to his children. These container is used as helper
to do this. Some helper-classes like OFrames or OTasksAccess use it to. They hold a pointer to an instance to do this. Some helper-classes like OFrames or OTasksAccess use it to. They hold a pointer to an instance
of this class, which is a member of a frame, task or desktop! You can append and remove frames. of this class, which is a member of a frame, task or desktop! You can append and remove frames.
It's possible to set one of these frames as active or deactive. You could have full index-access to It's possible to set one of these frames as active or deactivate. You could have full index-access to
container-items. container-items.
@devstatus ready to use @devstatus ready to use
......
...@@ -2111,7 +2111,7 @@ void SAL_CALL Frame::disposing() ...@@ -2111,7 +2111,7 @@ void SAL_CALL Frame::disposing()
// If somewhere called dispose() whitout close() before - normally no dialogs // If somewhere called dispose() whitout close() before - normally no dialogs
// should exist. Otherwise it's the problem of the outside caller. // should exist. Otherwise it's the problem of the outside caller.
// Note: // Note:
// (a) Do it after stopWindowListening(). May that force some active/deactive // (a) Do it after stopWindowListening(). May that force some active/deactivate
// notifications which we don't need here really. // notifications which we don't need here really.
// (b) Don't forget to save the old value of IsDialogCancelEnabled() to // (b) Don't forget to save the old value of IsDialogCancelEnabled() to
// restore it afterwards (to not kill headless mode). // restore it afterwards (to not kill headless mode).
......
...@@ -141,8 +141,8 @@ void IconView::PaintEntry(SvTreeListEntry& rEntry, long nX, long nY, ...@@ -141,8 +141,8 @@ void IconView::PaintEntry(SvTreeListEntry& rEntry, long nX, long nY,
if (pViewDataEntry->IsHighlighted()) if (pViewDataEntry->IsHighlighted())
{ {
Color aNewWallColor = rSettings.GetHighlightColor(); Color aNewWallColor = rSettings.GetHighlightColor();
// if the face color is bright then the deactive color is also bright // if the face color is bright then the deactivate color is also bright
// -> so you can't see any deactive selection // -> so you can't see any deactivate selection
if (bHideSelection && !rSettings.GetFaceColor().IsBright() if (bHideSelection && !rSettings.GetFaceColor().IsBright()
&& aWallpaper.GetColor().IsBright() != rSettings.GetDeactiveColor().IsBright()) && aWallpaper.GetColor().IsBright() != rSettings.GetDeactiveColor().IsBright())
{ {
......
...@@ -2715,8 +2715,8 @@ void SvTreeListBox::PaintEntry1(SvTreeListEntry& rEntry, long nLine, vcl::Render ...@@ -2715,8 +2715,8 @@ void SvTreeListBox::PaintEntry1(SvTreeListEntry& rEntry, long nLine, vcl::Render
if (pViewDataEntry->IsHighlighted() && bSelTab) if (pViewDataEntry->IsHighlighted() && bSelTab)
{ {
Color aNewWallColor = rSettings.GetHighlightColor(); Color aNewWallColor = rSettings.GetHighlightColor();
// if the face color is bright then the deactive color is also bright // if the face color is bright then the deactivate color is also bright
// -> so you can't see any deactive selection // -> so you can't see any deactivate selection
if (bHideSelection && !rSettings.GetFaceColor().IsBright() if (bHideSelection && !rSettings.GetFaceColor().IsBright()
&& aWallpaper.GetColor().IsBright() != rSettings.GetDeactiveColor().IsBright()) && aWallpaper.GetColor().IsBright() != rSettings.GetDeactiveColor().IsBright())
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment