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
bbed8d66
Kaydet (Commit)
bbed8d66
authored
Nis 11, 2014
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use strings directly
üst
d1dd39da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
acccontext.hxx
sw/source/core/access/acccontext.hxx
+2
-5
No files found.
sw/source/core/access/acccontext.hxx
Dosyayı görüntüle @
bbed8d66
...
...
@@ -388,9 +388,6 @@ public:
};
// some heavily used exception support
const
sal_Char
sDefunc
[]
=
"object is defunctional"
;
const
sal_Char
sMissingWindow
[]
=
"window is missing"
;
#define THROW_RUNTIME_EXCEPTION( ifc, msg ) \
::com::sun::star::uno::Reference < ifc > xThis( this ); \
::com::sun::star::uno::RuntimeException aExcept( \
...
...
@@ -402,7 +399,7 @@ const sal_Char sMissingWindow[] = "window is missing";
{ \
::com::sun::star::uno::Reference < ifc > xThis( ths ); \
::com::sun::star::lang::DisposedException aExcept( \
OUString(
sDefunc
), \
OUString(
"object is defunctional"
), \
xThis ); \
throw aExcept; \
}
...
...
@@ -413,7 +410,7 @@ const sal_Char sMissingWindow[] = "window is missing";
#define CHECK_FOR_WINDOW( i, w ) \
if( !(w) ) \
{ \
THROW_RUNTIME_EXCEPTION( i,
sMissingWindow );
\
THROW_RUNTIME_EXCEPTION( i,
"window is missing" );
\
}
#endif
...
...
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