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
ad19df86
Kaydet (Commit)
ad19df86
authored
Şub 06, 2019
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add a dummy implementation of WordBasic.AppShow()
Change-Id: I14379c5732c1921b8f52293045d01acf99e0b840
üst
3c42f006
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
XWordBasic.idl
oovbaapi/ooo/vba/word/XWordBasic.idl
+1
-0
vbaapplication.cxx
sw/source/ui/vba/vbaapplication.cxx
+9
-0
No files found.
oovbaapi/ooo/vba/word/XWordBasic.idl
Dosyayı görüntüle @
ad19df86
...
...
@@ -41,6 +41,7 @@ interface XWordBasic
long
AppMaximize
(
[
in
]
string
WindowName
,
[
in
]
any
State
)
;
long
DocMaximize
(
[
in
]
any
State
)
;
void
AppShow
(
[
in
]
string
WindowName
)
;
}
;
}
; }; };
...
...
sw/source/ui/vba/vbaapplication.cxx
Dosyayı görüntüle @
ad19df86
...
...
@@ -110,6 +110,7 @@ public:
const
css
::
uno
::
Any
&
OpenExclusive
,
const
css
::
uno
::
Any
&
SubType
)
override
;
virtual
sal_Int32
SAL_CALL
AppMaximize
(
const
OUString
&
WindowName
,
const
css
::
uno
::
Any
&
State
)
override
;
virtual
sal_Int32
SAL_CALL
DocMaximize
(
const
css
::
uno
::
Any
&
State
)
override
;
virtual
void
SAL_CALL
AppShow
(
const
OUString
&
WindowName
)
override
;
};
SwVbaApplication
::
SwVbaApplication
(
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
)
:
...
...
@@ -660,4 +661,12 @@ SwWordBasic::DocMaximize( const css::uno::Any& State )
return
0
;
}
void
SAL_CALL
SwWordBasic
::
AppShow
(
const
OUString
&
WindowName
)
{
SAL_INFO
(
"sw.vba"
,
"WordBasic.AppShow(WindowName:="
<<
WindowName
<<
")"
);
// FIXME: Implement if necessary
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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