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
2ea733e5
Kaydet (Commit)
2ea733e5
authored
Ock 15, 2018
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:useuniqueptr in SalXLib
Change-Id: Id3f8cf95479aa4e03bc6dcb05c5475ae462cfe5a
üst
3b724500
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
saldisp.hxx
vcl/inc/unx/saldisp.hxx
+2
-2
saldata.cxx
vcl/unx/generic/app/saldata.cxx
+2
-2
No files found.
vcl/inc/unx/saldisp.hxx
Dosyayı görüntüle @
2ea733e5
...
...
@@ -159,7 +159,7 @@ protected:
fd_set
aExceptionFDS_
;
Display
*
m_pDisplay
;
SalI18N_InputMethod
*
m_pInputMethod
;
std
::
unique_ptr
<
SalI18N_InputMethod
>
m_pInputMethod
;
public
:
SalXLib
();
...
...
@@ -181,7 +181,7 @@ public:
virtual
bool
CheckTimeout
(
bool
bExecuteTimers
=
true
);
SalI18N_InputMethod
*
GetInputMethod
()
const
{
return
m_pInputMethod
;
}
SalI18N_InputMethod
*
GetInputMethod
()
const
{
return
m_pInputMethod
.
get
()
;
}
Display
*
GetDisplay
()
const
{
return
m_pDisplay
;
}
};
...
...
vcl/unx/generic/app/saldata.cxx
Dosyayı görüntüle @
2ea733e5
...
...
@@ -376,7 +376,7 @@ SalXLib::~SalXLib()
close
(
m_pTimeoutFDS
[
0
]);
close
(
m_pTimeoutFDS
[
1
]);
delete
m_pInputMethod
;
m_pInputMethod
.
reset
()
;
}
static
Display
*
OpenX11Display
(
OString
&
rDisplay
)
...
...
@@ -433,7 +433,7 @@ static Display *OpenX11Display(OString& rDisplay)
void
SalXLib
::
Init
()
{
m_pInputMethod
=
new
SalI18N_InputMethod
;
m_pInputMethod
.
reset
(
new
SalI18N_InputMethod
)
;
m_pInputMethod
->
SetLocale
();
XrmInitialize
();
...
...
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