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
bcd4f99e
Kaydet (Commit)
bcd4f99e
authored
10 years ago
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove dead SO3_GLOBAL_CLASSID and SvObject
Change-Id: I57c1c4bf6482be7c3cf13c424972d4ed3b9a6b62
üst
0375504f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
16 deletions
+2
-16
classids.hxx
include/comphelper/classids.hxx
+0
-4
object.hxx
include/sot/object.hxx
+0
-1
sfxbasemodel.cxx
sfx2/source/doc/sfxbasemodel.cxx
+2
-11
No files found.
include/comphelper/classids.hxx
Dosyayı görüntüle @
bcd4f99e
...
...
@@ -376,10 +376,6 @@
0x1a8a6701, 0xde58, 0x11cf, \
0x89, 0xca, 0x0, 0x80, 0x29, 0xe4, 0xb0, 0xb1
#define SO3_GLOBAL_CLASSID \
0x475198a8, 0x694c, 0x4bd8, \
0xb0, 0x2f, 0xd9, 0xb7, 0x6b, 0xcf, 0x31, 0x28
#define SO3_RPT_CLASSID_90 \
0xd7896d52, 0xb7af, 0x4820, \
0x9d, 0xfe, 0xd4, 0x04, 0xd0, 0x15, 0x96, 0x0f
...
...
This diff is collapsed.
Click to expand it.
include/sot/object.hxx
Dosyayı görüntüle @
bcd4f99e
...
...
@@ -94,7 +94,6 @@ struct IUnknown;
class
SOT_DLLPUBLIC
SotObject
:
virtual
public
SvRefBase
{
friend
class
SotFactory
;
friend
class
SvObject
;
sal_uInt16
nOwnerLockCount
;
bool
bOwner
;
bool
bSVObject
;
// Ist Proxy, dann TRUE wenn andere Seite SV ist
...
...
This diff is collapsed.
Click to expand it.
sfx2/source/doc/sfxbasemodel.cxx
Dosyayı görüntüle @
bcd4f99e
...
...
@@ -3312,25 +3312,16 @@ void SAL_CALL SfxBaseModel::removePrintJobListener( const Reference< view::XPrin
}
}
// simple declaration of class SvObject is enough
// the corresponding <so3/iface.hxx> cannon be included because it provides
// declaration of class SvBorder that conflicts with ../../inc/viewfrm.hxx
class
SvObject
;
sal_Int64
SAL_CALL
SfxBaseModel
::
getSomething
(
const
Sequence
<
sal_Int8
>&
aIdentifier
)
throw
(
RuntimeException
,
std
::
exception
)
{
SvGlobalName
aName
(
aIdentifier
);
if
((
aName
==
SvGlobalName
(
SO3_GLOBAL_CLASSID
))
||
(
aName
==
SvGlobalName
(
SFX_GLOBAL_CLASSID
)))
if
(
aName
==
SvGlobalName
(
SFX_GLOBAL_CLASSID
))
{
SolarMutexGuard
aGuard
;
SfxObjectShell
*
const
pObjectShell
(
GetObjectShell
());
if
(
pObjectShell
)
{
// SO3_GLOBAL_CLASSID is apparently used by binfilter :(
if
(
aName
==
SvGlobalName
(
SO3_GLOBAL_CLASSID
)
)
return
reinterpret_cast
<
sal_Int64
>
((
SvObject
*
)
pObjectShell
);
else
if
(
aName
==
SvGlobalName
(
SFX_GLOBAL_CLASSID
)
)
return
reinterpret_cast
<
sal_Int64
>
((
SfxObjectShell
*
)
pObjectShell
);
return
reinterpret_cast
<
sal_Int64
>
((
SfxObjectShell
*
)
pObjectShell
);
}
}
...
...
This diff is collapsed.
Click to expand it.
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