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
c43d7d05
Kaydet (Commit)
c43d7d05
authored
Mar 01, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Pointless to convert char* to OString and back
üst
377c162b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
11 deletions
+4
-11
dialmgr.cxx
svx/source/dialog/dialmgr.cxx
+1
-4
datanavi.cxx
svx/source/form/datanavi.cxx
+1
-3
galmisc.cxx
svx/source/gallery2/galmisc.cxx
+1
-2
svdetc.cxx
svx/source/svdraw/svdetc.cxx
+1
-2
No files found.
svx/source/dialog/dialmgr.cxx
Dosyayı görüntüle @
c43d7d05
...
...
@@ -46,10 +46,7 @@ static ResMgr* pResMgr=0;
ResMgr
*
DialogsResMgr
::
GetResMgr
()
{
if
(
!
pResMgr
)
{
ByteString
aName
(
"svx"
);
pResMgr
=
ResMgr
::
CreateResMgr
(
aName
.
GetBuffer
(),
Application
::
GetSettings
().
GetUILocale
()
);
}
pResMgr
=
ResMgr
::
CreateResMgr
(
"svx"
,
Application
::
GetSettings
().
GetUILocale
()
);
return
pResMgr
;
}
...
...
svx/source/form/datanavi.cxx
Dosyayı görüntüle @
c43d7d05
...
...
@@ -810,10 +810,8 @@ namespace svxform
{
// create a resource manager, for the svx resource file
// and the UI locale
ByteString
aResourceFile
(
"svx"
);
ResMgr
*
pResMgr
=
ResMgr
::
CreateResMgr
(
aResourceFile
.
GetBuffer
(),
Application
::
GetSettings
().
GetUILocale
()
);
"svx"
,
Application
::
GetSettings
().
GetUILocale
()
);
// load the resources for the AddSubmission modal dialog.
// This will create our own resource context.
...
...
svx/source/gallery2/galmisc.cxx
Dosyayı görüntüle @
c43d7d05
...
...
@@ -76,9 +76,8 @@ ResMgr* GetGalleryResMgr()
if
(
!
pGalleryResMgr
)
{
ByteString
aResMgrName
(
"gal"
);
pGalleryResMgr
=
ResMgr
::
CreateResMgr
(
aResMgrName
.
GetBuffer
()
,
Application
::
GetSettings
().
GetUILocale
()
);
"gal"
,
Application
::
GetSettings
().
GetUILocale
()
);
}
return
pGalleryResMgr
;
...
...
svx/source/svdraw/svdetc.cxx
Dosyayı görüntüle @
c43d7d05
...
...
@@ -671,9 +671,8 @@ ResMgr* ImpGetResMgr()
if
(
!
rGlobalData
.
pResMgr
)
{
ByteString
aName
(
"svx"
);
rGlobalData
.
pResMgr
=
ResMgr
::
CreateResMgr
(
aName
.
GetBuffer
()
,
Application
::
GetSettings
().
GetUILocale
()
);
ResMgr
::
CreateResMgr
(
"svx"
,
Application
::
GetSettings
().
GetUILocale
()
);
}
return
rGlobalData
.
pResMgr
;
...
...
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