Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
2b951c2e
Kaydet (Commit)
2b951c2e
authored
Kas 26, 2013
tarafından
Steve Yin
Kaydeden (comit)
Caolán McNamara
Kas 26, 2013
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Integrate branch of IAccessible2
Change-Id: I7d6764cfc86b7b8846c0908278ae10a68c0a14f5
üst
3507ffab
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
3 deletions
+15
-3
tabdlg.cxx
sfx2/source/dialog/tabdlg.cxx
+3
-0
templdlg.src
sfx2/source/dialog/templdlg.src
+2
-1
mnuitem.cxx
sfx2/source/menu/mnuitem.cxx
+4
-0
viewfrm.cxx
sfx2/source/view/viewfrm.cxx
+6
-2
No files found.
sfx2/source/dialog/tabdlg.cxx
Dosyayı görüntüle @
2b951c2e
...
...
@@ -698,6 +698,9 @@ void SfxTabDialog::Start( sal_Bool bShow )
if
(
bShow
)
Show
();
if
(
IsVisible
()
&&
(
!
HasChildPathFocus
()
||
HasFocus
()
)
)
GrabFocusToFirstControl
();
}
// -----------------------------------------------------------------------
...
...
sfx2/source/dialog/templdlg.src
Dosyayı görüntüle @
2b951c2e
...
...
@@ -35,11 +35,12 @@ ImageList DLG_STYLE_DESIGNER
IdCount = { 3 ; };
};
// Strings ---------------------------------------------------------------
// Strings ---------------------------------------------------------------
String STR_STYLE_ELEMTLIST
{
Text [ en-US ] = "Style List" ;
};
String STR_STYLE_FILTER_HIERARCHICAL
{
Text [ en-US ] = "Hierarchical" ;
...
...
sfx2/source/menu/mnuitem.cxx
Dosyayı görüntüle @
2b951c2e
...
...
@@ -198,6 +198,8 @@ void SfxMenuControl::StateChanged
DBG_ASSERT
(
GetId
()
<
SID_OBJECTMENU0
||
GetId
()
>
SID_OBJECTMENU_LAST
,
"SfxBoolItem not allowed for SID_OBJECTMENUx"
);
bCheck
=
((
const
SfxBoolItem
*
)
pState
)
->
GetValue
();
Menu
*
pMenu
=
pOwnMenu
->
GetSVMenu
();
pMenu
->
SetItemBits
(
GetId
()
,
pMenu
->
GetItemBits
(
GetId
()
)
|
MIB_CHECKABLE
);
}
else
if
(
pState
->
ISA
(
SfxEnumItemInterface
)
&&
((
SfxEnumItemInterface
*
)
pState
)
->
HasBoolValue
()
)
...
...
@@ -206,6 +208,8 @@ void SfxMenuControl::StateChanged
DBG_ASSERT
(
GetId
()
<
SID_OBJECTMENU0
||
GetId
()
>
SID_OBJECTMENU_LAST
,
"SfxEnumItem not allowed for SID_OBJECTMENUx"
);
bCheck
=
((
SfxEnumItemInterface
*
)
pState
)
->
GetBoolValue
();
Menu
*
pMenu
=
pOwnMenu
->
GetSVMenu
();
pMenu
->
SetItemBits
(
GetId
()
,
pMenu
->
GetItemBits
(
GetId
()
)
|
MIB_CHECKABLE
);
}
else
if
(
(
b_ShowStrings
||
bIsObjMenu
)
&&
pState
->
ISA
(
SfxStringItem
)
)
{
...
...
sfx2/source/view/viewfrm.cxx
Dosyayı görüntüle @
2b951c2e
...
...
@@ -676,7 +676,11 @@ void SfxViewFrame::ExecReload_Impl( SfxRequest& rReq )
if
(
pSalvageItem
)
{
aURL
=
pSalvageItem
->
GetValue
();
pNewSet
->
ClearItem
(
SID_DOC_SALVAGE
);
if
(
pNewSet
)
{
pNewSet
->
ClearItem
(
SID_ORIGURL
);
pNewSet
->
ClearItem
(
SID_DOC_SALVAGE
);
}
}
#if HAVE_FEATURE_MULTIUSER_ENVIRONMENT
...
...
@@ -3134,13 +3138,13 @@ void SfxViewFrame::ChildWindowExecute( SfxRequest &rReq )
sal_Bool
bHasChild
=
HasChildWindow
(
nSID
);
sal_Bool
bShow
=
pShowItem
?
pShowItem
->
GetValue
()
:
!
bHasChild
;
GetDispatcher
()
->
Update_Impl
(
sal_True
);
// Perform action.
if
(
!
pShowItem
||
bShow
!=
bHasChild
)
ToggleChildWindow
(
nSID
);
GetBindings
().
Invalidate
(
nSID
);
GetDispatcher
()
->
Update_Impl
(
sal_True
);
// Record if possible.
if
(
nSID
==
SID_HYPERLINK_DIALOG
||
nSID
==
SID_SEARCH_DLG
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment