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
85341374
Kaydet (Commit)
85341374
authored
Mar 18, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove unused parameter
Change-Id: Iab723e78b0305dadee5598b21a9ea78093109b65
üst
309951d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
convdic.cxx
linguistic/source/convdic.cxx
+2
-2
convdicxml.hxx
linguistic/source/convdicxml.hxx
+1
-1
No files found.
linguistic/source/convdic.cxx
Dosyayı görüntüle @
85341374
...
...
@@ -141,7 +141,7 @@ sal_Bool IsConvDic( const OUString &rFileURL, sal_Int16 &nLang, sal_Int16 &nConv
// first argument being 0 should stop the file from being parsed
// up to the end (reading all entries) when the required
// data (language, conversion type) is found.
ConvDicXMLImport
*
pImport
=
new
ConvDicXMLImport
(
0
,
rFileURL
);
ConvDicXMLImport
*
pImport
=
new
ConvDicXMLImport
(
0
);
//!! keep a first reference to ensure the lifetime of the object !!
uno
::
Reference
<
XInterface
>
xRef
(
(
document
::
XFilter
*
)
pImport
,
UNO_QUERY
);
...
...
@@ -220,7 +220,7 @@ void ConvDic::Load()
//!! prevent function from being called recursively via HasEntry, AddEntry
bNeedEntries
=
sal_False
;
ConvDicXMLImport
*
pImport
=
new
ConvDicXMLImport
(
this
,
aMainURL
);
ConvDicXMLImport
*
pImport
=
new
ConvDicXMLImport
(
this
);
//!! keep a first reference to ensure the lifetime of the object !!
uno
::
Reference
<
XInterface
>
xRef
(
(
document
::
XFilter
*
)
pImport
,
UNO_QUERY
);
ReadThroughDic
(
aMainURL
,
*
pImport
);
// will implicitly add the entries
...
...
linguistic/source/convdicxml.hxx
Dosyayı görüntüle @
85341374
...
...
@@ -83,7 +83,7 @@ class ConvDicXMLImport : public SvXMLImport
public
:
//!! see comment for pDic member
ConvDicXMLImport
(
ConvDic
*
pConvDic
,
const
OUString
&
/*&rFileName*/
)
:
ConvDicXMLImport
(
ConvDic
*
pConvDic
)
:
SvXMLImport
(
comphelper
::
getProcessComponentContext
(),
"com.sun.star.lingu2.ConvDicXMLImport"
,
IMPORT_ALL
),
pDic
(
pConvDic
)
{
...
...
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