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
e74a0992
Kaydet (Commit)
e74a0992
authored
Şub 27, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Exclude WNT-specific includes on other platforms
Change-Id: I7eeae61275269e09092267f2a6ccb27d7bb91ddb
üst
344c2dca
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
10 deletions
+32
-10
oleembed.cxx
embeddedobj/source/msole/oleembed.cxx
+4
-2
olemisc.cxx
embeddedobj/source/msole/olemisc.cxx
+16
-6
olepersist.cxx
embeddedobj/source/msole/olepersist.cxx
+4
-1
oleregister.cxx
embeddedobj/source/msole/oleregister.cxx
+3
-0
olevisual.cxx
embeddedobj/source/msole/olevisual.cxx
+5
-1
No files found.
embeddedobj/source/msole/oleembed.cxx
Dosyayı görüntüle @
e74a0992
...
...
@@ -50,10 +50,12 @@
#include <targetstatecontrol.hxx>
#include <olecomponent.hxx>
#include "ownview.hxx"
#if defined WNT
#include <olecomponent.hxx>
#endif
using
namespace
::
com
::
sun
::
star
;
#ifdef WNT
...
...
embeddedobj/source/msole/olemisc.cxx
Dosyayı görüntüle @
e74a0992
...
...
@@ -17,6 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sal/config.h>
#include <cassert>
#include <com/sun/star/embed/EmbedUpdateModes.hpp>
#include <com/sun/star/embed/EmbedStates.hpp>
#include <com/sun/star/lang/XComponent.hpp>
...
...
@@ -25,10 +29,13 @@
#include <cppuhelper/interfacecontainer.h>
#include <oleembobj.hxx>
#include <olecomponent.hxx>
#include "ownview.hxx"
#if defined WNT
#include <olecomponent.hxx>
#endif
using
namespace
::
com
::
sun
::
star
;
sal_Bool
KillFile_Impl
(
const
OUString
&
aURL
,
const
uno
::
Reference
<
lang
::
XMultiServiceFactory
>&
xFactory
);
...
...
@@ -380,14 +387,17 @@ uno::Reference< util::XCloseable > SAL_CALL OleEmbeddedObject::getComponent()
uno
::
Reference
<
uno
::
XInterface
>
(
static_cast
<
::
cppu
::
OWeakObject
*
>
(
this
)
)
);
}
if
(
!
m_pOleComponent
)
#if defined WNT
if
(
m_pOleComponent
!=
0
)
{
// TODO/LATER: Is it correct???
return
uno
::
Reference
<
util
::
XCloseable
>
();
// throw uno::RuntimeException(); // TODO
return
uno
::
Reference
<
util
::
XCloseable
>
(
static_cast
<
::
cppu
::
OWeakObject
*
>
(
m_pOleComponent
),
uno
::
UNO_QUERY
);
}
#endif
return
uno
::
Reference
<
util
::
XCloseable
>
(
static_cast
<
::
cppu
::
OWeakObject
*
>
(
m_pOleComponent
),
uno
::
UNO_QUERY
);
assert
(
m_pOleComponent
==
0
);
// TODO/LATER: Is it correct???
return
uno
::
Reference
<
util
::
XCloseable
>
();
// throw uno::RuntimeException(); // TODO
}
...
...
embeddedobj/source/msole/olepersist.cxx
Dosyayı görüntüle @
e74a0992
...
...
@@ -43,9 +43,12 @@
#include <comphelper/classids.hxx>
#include <osl/thread.hxx>
#include <olecomponent.hxx>
#include <closepreventer.hxx>
#if defined WNT
#include <olecomponent.hxx>
#endif
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
comphelper
;
...
...
embeddedobj/source/msole/oleregister.cxx
Dosyayı görüntüle @
e74a0992
...
...
@@ -22,7 +22,10 @@
#include <cppuhelper/factory.hxx>
#include "xolefactory.hxx"
#if defined WNT
#include "xdialogcreator.hxx"
#endif
using
namespace
::
com
::
sun
::
star
;
...
...
embeddedobj/source/msole/olevisual.cxx
Dosyayı görüntüle @
e74a0992
...
...
@@ -26,10 +26,14 @@
#include <com/sun/star/embed/NoVisualAreaSizeException.hpp>
#include <oleembobj.hxx>
#include <olecomponent.hxx>
//
#include <olecomponent.hxx>
#include <comphelper/mimeconfighelper.hxx>
#include <comphelper/seqstream.hxx>
#if defined WNT
#include <olecomponent.hxx>
#endif
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
comphelper
;
...
...
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