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
52370d78
Kaydet (Commit)
52370d78
authored
Şub 26, 2011
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move bogus OSL_ASSERT(msg) to OSL_FAIL(msg)
üst
6e03518f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
13 deletions
+13
-13
insdlg.cxx
cui/source/dialogs/insdlg.cxx
+1
-1
abpservices.cxx
extensions/source/abpilot/abpservices.cxx
+1
-1
dbpservices.cxx
extensions/source/dbpilots/dbpservices.cxx
+1
-1
componentmodule.cxx
extensions/source/inc/componentmodule.cxx
+4
-4
services.cxx
extensions/source/preload/services.cxx
+1
-1
pcrservices.cxx
extensions/source/propctrlr/pcrservices.cxx
+1
-1
forms_module_impl.hxx
forms/source/inc/forms_module_impl.hxx
+4
-4
No files found.
cui/source/dialogs/insdlg.cxx
Dosyayı görüntüle @
52370d78
...
...
@@ -364,7 +364,7 @@ short SvInsertOleDlg::Execute()
}
else
{
OSL_
ASSERT
(
"Can not get InteractionHandler!
\n
"
);
OSL_
FAIL
(
"Can not get InteractionHandler!
\n
"
);
aMedium
.
realloc
(
1
);
}
...
...
extensions/source/abpilot/abpservices.cxx
Dosyayı görüntüle @
52370d78
...
...
@@ -81,7 +81,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
}
catch
(
InvalidRegistryException
&
)
{
OSL_
ASSERT
(
"abp::component_writeInfo: could not create a registry key (InvalidRegistryException) !"
);
OSL_
FAIL
(
"abp::component_writeInfo: could not create a registry key (InvalidRegistryException) !"
);
}
return
sal_False
;
...
...
extensions/source/dbpilots/dbpservices.cxx
Dosyayı görüntüle @
52370d78
...
...
@@ -85,7 +85,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
}
catch
(
InvalidRegistryException
&
)
{
OSL_
ASSERT
(
"dbp::component_writeInfo: could not create a registry key (InvalidRegistryException) !"
);
OSL_
FAIL
(
"dbp::component_writeInfo: could not create a registry key (InvalidRegistryException) !"
);
}
return
sal_False
;
...
...
extensions/source/inc/componentmodule.cxx
Dosyayı görüntüle @
52370d78
...
...
@@ -203,7 +203,7 @@ namespace COMPMOD_NAMESPACE
{
if
(
!
s_pImplementationNames
)
{
OSL_
ASSERT
(
"OModule::revokeComponent : have no class infos ! Are you sure called this method at the right time ?"
);
OSL_
FAIL
(
"OModule::revokeComponent : have no class infos ! Are you sure called this method at the right time ?"
);
return
;
}
OSL_ENSURE
(
s_pImplementationNames
&&
s_pSupportedServices
&&
s_pCreationFunctionPointers
&&
s_pFactoryFunctionPointers
,
...
...
@@ -245,7 +245,7 @@ namespace COMPMOD_NAMESPACE
if
(
!
s_pImplementationNames
)
{
OSL_
ASSERT
(
"OModule::writeComponentInfos : have no class infos ! Are you sure called this method at the right time ?"
);
OSL_
FAIL
(
"OModule::writeComponentInfos : have no class infos ! Are you sure called this method at the right time ?"
);
return
sal_True
;
}
OSL_ENSURE
(
s_pImplementationNames
&&
s_pSupportedServices
&&
s_pCreationFunctionPointers
&&
s_pFactoryFunctionPointers
,
...
...
@@ -276,7 +276,7 @@ namespace COMPMOD_NAMESPACE
}
catch
(
Exception
&
)
{
OSL_
ASSERT
(
"OModule::writeComponentInfos : something went wrong while creating the keys !"
);
OSL_
FAIL
(
"OModule::writeComponentInfos : something went wrong while creating the keys !"
);
return
sal_False
;
}
}
...
...
@@ -294,7 +294,7 @@ namespace COMPMOD_NAMESPACE
if
(
!
s_pImplementationNames
)
{
OSL_
ASSERT
(
"OModule::getComponentFactory : have no class infos ! Are you sure called this method at the right time ?"
);
OSL_
FAIL
(
"OModule::getComponentFactory : have no class infos ! Are you sure called this method at the right time ?"
);
return
NULL
;
}
OSL_ENSURE
(
s_pImplementationNames
&&
s_pSupportedServices
&&
s_pCreationFunctionPointers
&&
s_pFactoryFunctionPointers
,
...
...
extensions/source/preload/services.cxx
Dosyayı görüntüle @
52370d78
...
...
@@ -81,7 +81,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
}
catch
(
InvalidRegistryException
&
)
{
OSL_
ASSERT
(
"preload::component_writeInfo: could not create a registry key (InvalidRegistryException) !"
);
OSL_
FAIL
(
"preload::component_writeInfo: could not create a registry key (InvalidRegistryException) !"
);
}
return
sal_False
;
...
...
extensions/source/propctrlr/pcrservices.cxx
Dosyayı görüntüle @
52370d78
...
...
@@ -117,7 +117,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
}
catch
(
InvalidRegistryException
&
)
{
OSL_
ASSERT
(
"pcr::component_writeInfo: could not create a registry key (InvalidRegistryException) !"
);
OSL_
FAIL
(
"pcr::component_writeInfo: could not create a registry key (InvalidRegistryException) !"
);
}
return
sal_False
;
...
...
forms/source/inc/forms_module_impl.hxx
Dosyayı görüntüle @
52370d78
...
...
@@ -74,7 +74,7 @@ namespace FORMS_MODULE_NAMESPACE
{
if
(
!
s_pImplementationNames
)
{
OSL_
ASSERT
(
"OFormsModule::revokeComponent : have no class infos ! Are you sure called this method at the right time ?"
);
OSL_
FAIL
(
"OFormsModule::revokeComponent : have no class infos ! Are you sure called this method at the right time ?"
);
return
;
}
OSL_ENSURE
(
s_pImplementationNames
&&
s_pSupportedServices
&&
s_pCreationFunctionPointers
&&
s_pFactoryFunctionPointers
,
...
...
@@ -116,7 +116,7 @@ namespace FORMS_MODULE_NAMESPACE
if
(
!
s_pImplementationNames
)
{
OSL_
ASSERT
(
"OFormsModule::writeComponentInfos : have no class infos ! Are you sure called this method at the right time ?"
);
OSL_
FAIL
(
"OFormsModule::writeComponentInfos : have no class infos ! Are you sure called this method at the right time ?"
);
return
sal_True
;
}
OSL_ENSURE
(
s_pImplementationNames
&&
s_pSupportedServices
&&
s_pCreationFunctionPointers
&&
s_pFactoryFunctionPointers
,
...
...
@@ -147,7 +147,7 @@ namespace FORMS_MODULE_NAMESPACE
}
catch
(
Exception
&
)
{
OSL_
ASSERT
(
"OFormsModule::writeComponentInfos : something went wrong while creating the keys !"
);
OSL_
FAIL
(
"OFormsModule::writeComponentInfos : something went wrong while creating the keys !"
);
return
sal_False
;
}
}
...
...
@@ -165,7 +165,7 @@ namespace FORMS_MODULE_NAMESPACE
if
(
!
s_pImplementationNames
)
{
OSL_
ASSERT
(
"OFormsModule::getComponentFactory : have no class infos ! Are you sure called this method at the right time ?"
);
OSL_
FAIL
(
"OFormsModule::getComponentFactory : have no class infos ! Are you sure called this method at the right time ?"
);
return
NULL
;
}
OSL_ENSURE
(
s_pImplementationNames
&&
s_pSupportedServices
&&
s_pCreationFunctionPointers
&&
s_pFactoryFunctionPointers
,
...
...
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