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
d624a657
Kaydet (Commit)
d624a657
authored
Eki 05, 2011
tarafından
Fridrich Štrba
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix fpicker windows build
üst
aa878cdd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
FileOpenDlg.cxx
fpicker/source/win32/filepicker/FileOpenDlg.cxx
+4
-4
filepickerstate.cxx
fpicker/source/win32/filepicker/filepickerstate.cxx
+1
-1
No files found.
fpicker/source/win32/filepicker/FileOpenDlg.cxx
Dosyayı görüntüle @
d624a657
...
...
@@ -243,7 +243,7 @@ rtl::OUString SAL_CALL CFileOpenDialog::getFullFileName() const
rtl
::
OUString
SAL_CALL
CFileOpenDialog
::
getFileName
()
const
{
return
rtl
::
OUString
(
m_fileTitleBuffer
);
return
rtl
::
OUString
(
m_fileTitleBuffer
.
getStr
()
);
}
//------------------------------------------------------------------------
...
...
@@ -374,7 +374,7 @@ rtl::OUString SAL_CALL CFileOpenDialog::getCurrentFilePath() const
if
(
nLen
>
0
)
{
m_helperBuffer
.
setLength
((
nLen
*
sizeof
(
sal_Unicode
))
-
1
);
return
rtl
::
OUString
(
m_helperBuffer
);
return
rtl
::
OUString
(
m_helperBuffer
.
getStr
()
);
}
return
rtl
::
OUString
();
}
...
...
@@ -396,7 +396,7 @@ rtl::OUString SAL_CALL CFileOpenDialog::getCurrentFolderPath() const
if
(
nLen
>
0
)
{
m_helperBuffer
.
setLength
((
nLen
*
sizeof
(
sal_Unicode
))
-
1
);
return
rtl
::
OUString
(
m_helperBuffer
);
return
rtl
::
OUString
(
m_helperBuffer
.
getStr
()
);
}
return
rtl
::
OUString
();
}
...
...
@@ -418,7 +418,7 @@ rtl::OUString SAL_CALL CFileOpenDialog::getCurrentFileName() const
if
(
nLen
>
0
)
{
m_helperBuffer
.
setLength
((
nLen
*
sizeof
(
sal_Unicode
))
-
1
);
return
rtl
::
OUString
(
m_helperBuffer
);
return
rtl
::
OUString
(
m_helperBuffer
.
getStr
()
);
}
return
rtl
::
OUString
();
}
...
...
fpicker/source/win32/filepicker/filepickerstate.cxx
Dosyayı görüntüle @
d624a657
...
...
@@ -213,7 +213,7 @@ OUString MatchFixBrokenPath(const OUString& path)
if
(
path
[
1
]
==
':'
&&
path
[
2
]
==
'.'
&&
path
[
3
]
==
'\\'
)
{
// skip the '.'
return
OUString
(
path
,
2
)
+
path
.
copy
(
3
,
path
.
getLength
()
-
3
);
return
OUString
(
path
.
getStr
()
,
2
)
+
path
.
copy
(
3
,
path
.
getLength
()
-
3
);
}
return
path
;
}
...
...
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