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
cea414bf
Kaydet (Commit)
cea414bf
authored
Eyl 09, 2012
tarafından
Noel Power
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#54721 fix vba not tracking currently selected doc correctly
Change-Id: I43b17dfc621d0aba76cdd33ebf97c457fa1da912
üst
986a0f4e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
docuno.cxx
sc/source/ui/unoobj/docuno.cxx
+3
-8
No files found.
sc/source/ui/unoobj/docuno.cxx
Dosyayı görüntüle @
cea414bf
...
...
@@ -119,7 +119,7 @@ const SfxItemPropertyMapEntry* lcl_GetDocOptPropertyMap()
{
MAP_CHAR_LEN
(
SC_UNO_AUTOCONTFOC
),
0
,
&
getBooleanCppuType
(),
0
,
0
},
{
MAP_CHAR_LEN
(
SC_UNO_BASICLIBRARIES
),
0
,
&
getCppuType
((
uno
::
Reference
<
script
::
XLibraryContainer
>*
)
0
),
beans
::
PropertyAttribute
::
READONLY
,
0
},
{
MAP_CHAR_LEN
(
SC_UNO_DIALOGLIBRARIES
),
0
,
&
getCppuType
((
uno
::
Reference
<
script
::
XLibraryContainer
>*
)
0
),
beans
::
PropertyAttribute
::
READONLY
,
0
},
{
MAP_CHAR_LEN
(
SC_UNO_VBADOCOBJ
),
0
,
&
getCppuType
(
(
beans
::
PropertyValue
*
)
0
),
beans
::
PropertyAttribute
::
READONLY
,
0
},
{
MAP_CHAR_LEN
(
SC_UNO_VBADOCOBJ
),
0
,
&
getCppuType
(
static_cast
<
const
rtl
::
OUString
*
>
(
0
)
),
beans
::
PropertyAttribute
::
READONLY
,
0
},
{
MAP_CHAR_LEN
(
SC_UNO_CALCASSHOWN
),
PROP_UNO_CALCASSHOWN
,
&
getBooleanCppuType
(),
0
,
0
},
{
MAP_CHAR_LEN
(
SC_UNONAME_CLOCAL
),
0
,
&
getCppuType
((
lang
::
Locale
*
)
0
),
0
,
0
},
{
MAP_CHAR_LEN
(
SC_UNO_CJK_CLOCAL
),
0
,
&
getCppuType
((
lang
::
Locale
*
)
0
),
0
,
0
},
...
...
@@ -1834,15 +1834,10 @@ uno::Any SAL_CALL ScModelObj::getPropertyValue( const rtl::OUString& aPropertyNa
}
else
if
(
aString
.
EqualsAscii
(
SC_UNO_VBADOCOBJ
)
)
{
// PropertyValue seems extreme because we store
// the model ( as the value member ) of the PropertyValue that is
// itself a property of the model ( the intention however is to
// Note: the intention really here is to
// store something like a Workbook object... but we don't do that )
// yet
beans
::
PropertyValue
aProp
;
aProp
.
Name
=
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"ThisExcelDoc"
)
);
aProp
.
Value
<<=
pDocShell
->
GetModel
();
aRet
<<=
aProp
;
aRet
=
uno
::
makeAny
(
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"ThisExcelDoc"
)
)
);
}
else
if
(
aString
.
EqualsAscii
(
SC_UNO_RUNTIMEUID
)
)
{
...
...
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