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
b0126a2e
Kaydet (Commit)
b0126a2e
authored
Kas 20, 2012
tarafından
Luboš Luňák
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
do not use exitcode 0 on failure
Change-Id: I47ce1502e8ffd58709a64a3ca520d59cb765bfaa
üst
a54e9273
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
lngconvex.cxx
shell/source/tools/lngconvex/lngconvex.cxx
+3
-0
No files found.
shell/source/tools/lngconvex/lngconvex.cxx
Dosyayı görüntüle @
b0126a2e
...
@@ -590,15 +590,18 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
...
@@ -590,15 +590,18 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
catch
(
const
std
::
ios
::
failure
&
ex
)
catch
(
const
std
::
ios
::
failure
&
ex
)
{
{
std
::
cout
<<
ex
.
what
()
<<
std
::
endl
;
std
::
cout
<<
ex
.
what
()
<<
std
::
endl
;
return
1
;
}
}
catch
(
const
std
::
exception
&
ex
)
catch
(
const
std
::
exception
&
ex
)
{
{
std
::
cout
<<
ex
.
what
()
<<
std
::
endl
;
std
::
cout
<<
ex
.
what
()
<<
std
::
endl
;
ShowUsage
();
ShowUsage
();
return
1
;
}
}
catch
(...)
catch
(...)
{
{
std
::
cout
<<
"Unexpected error..."
<<
std
::
endl
;
std
::
cout
<<
"Unexpected error..."
<<
std
::
endl
;
return
1
;
}
}
return
0
;
return
0
;
}
}
...
...
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