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
f471fe7b
Kaydet (Commit)
f471fe7b
authored
Şub 17, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Better way to avoid ambiguities among ResId ctors
Change-Id: I43c4c1c5ad193cdd3182cea649fae6091984a121
üst
dd4bd0ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
15 deletions
+2
-15
resid.hxx
include/tools/resid.hxx
+0
-13
objface.cxx
sfx2/source/control/objface.cxx
+2
-2
No files found.
include/tools/resid.hxx
Dosyayı görüntüle @
f471fe7b
...
...
@@ -65,19 +65,6 @@ public:
{
ImplInit
(
nId
,
rMgr
,
NULL
);
}
// backwards compatibility; avoid ambiguities
ResId
(
sal_uInt16
nId
,
ResMgr
&
rMgr
)
{
ImplInit
(
sal_uInt32
(
nId
),
rMgr
,
NULL
);
}
ResId
(
int
nId
,
ResMgr
&
rMgr
)
{
ImplInit
(
sal_uInt32
(
nId
),
rMgr
,
NULL
);
}
ResId
(
long
nId
,
ResMgr
&
rMgr
)
{
ImplInit
(
sal_uInt32
(
nId
),
rMgr
,
NULL
);
}
sal_uInt32
GetWinBits
()
const
{
return
m_nWinBits
;
}
void
SetWinBits
(
sal_uInt32
nBits
)
const
{
m_nWinBits
=
nBits
;
}
...
...
sfx2/source/control/objface.cxx
Dosyayı görüntüle @
f471fe7b
...
...
@@ -83,8 +83,8 @@ struct SfxInterface_Impl
bool
bRegistered
;
SfxInterface_Impl
()
:
aPopupRes
(
0
,
*
SfxApplication
::
GetOrCreate
()
->
GetSfxResManager
()),
aStatBarRes
(
0
,
*
SfxApplication
::
GetOrCreate
()
->
GetSfxResManager
())
aPopupRes
(
nullptr
,
*
SfxApplication
::
GetOrCreate
()
->
GetSfxResManager
()),
aStatBarRes
(
nullptr
,
*
SfxApplication
::
GetOrCreate
()
->
GetSfxResManager
())
,
pModule
(
NULL
)
,
bRegistered
(
false
)
{
...
...
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