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
a814812b
Kaydet (Commit)
a814812b
authored
Kas 06, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1338268 Uncaught exception
Change-Id: Id954d556c2b65772025b8aaabdbfa9ed4ae7a9b7
üst
fb1a18d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
12 deletions
+22
-12
localize.cxx
l10ntools/source/localize.cxx
+22
-12
No files found.
l10ntools/source/localize.cxx
Dosyayı görüntüle @
a814812b
...
@@ -453,19 +453,29 @@ void handleProjects(char * sSourceRoot, char const * sDestRoot)
...
@@ -453,19 +453,29 @@ void handleProjects(char * sSourceRoot, char const * sDestRoot)
}
}
}
}
SAL_IMPLEMENT_MAIN_WITH_ARGS
(
argc
,
argv
)
{
SAL_IMPLEMENT_MAIN_WITH_ARGS
(
argc
,
argv
)
if
(
argc
!=
3
)
{
{
cerr
try
<<
(
"localize (c)2001 by Sun Microsystems
\n\n
"
{
"As part of the L10N framework, localize extracts en-US
\n
"
if
(
argc
!=
3
)
"strings for translation out of the toplevel modules defined
\n
"
{
"in projects array in l10ntools/source/localize.cxx.
\n\n
"
cerr
"Syntax: localize <source-root> <outfile>
\n
"
);
<<
(
"localize (c)2001 by Sun Microsystems
\n\n
"
exit
(
EXIT_FAILURE
);
"As part of the L10N framework, localize extracts en-US
\n
"
}
"strings for translation out of the toplevel modules defined
\n
"
try
{
"in projects array in l10ntools/source/localize.cxx.
\n\n
"
"Syntax: localize <source-root> <outfile>
\n
"
);
exit
(
EXIT_FAILURE
);
}
handleProjects
(
argv
[
1
],
argv
[
2
]);
handleProjects
(
argv
[
1
],
argv
[
2
]);
}
catch
(
bool
)
{
//TODO
}
catch
(
std
::
exception
&
e
)
{
cerr
<<
"exception: "
<<
e
.
what
()
<<
std
::
endl
;
return
EXIT_FAILURE
;
}
catch
(
bool
)
//TODO
{
return
EXIT_FAILURE
;
return
EXIT_FAILURE
;
}
}
return
EXIT_SUCCESS
;
return
EXIT_SUCCESS
;
...
...
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