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
33f178c1
Kaydet (Commit)
33f178c1
authored
Nis 26, 2011
tarafından
Luboš Luňák
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
error dialog when a component (e.g. Writer) is not found (bnc#689116)
üst
2ede8b43
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
iahndl.cxx
uui/source/iahndl.cxx
+18
-0
ids.hrc
uui/source/ids.hrc
+1
-0
ids.src
uui/source/ids.src
+5
-0
No files found.
uui/source/iahndl.cxx
Dosyayı görüntüle @
33f178c1
...
...
@@ -67,6 +67,7 @@
#include "com/sun/star/ucb/XInteractionReplaceExistingData.hpp"
#include "com/sun/star/ucb/XInteractionSupplyName.hpp"
#include "com/sun/star/xforms/InvalidDataOnSubmitException.hpp"
#include "com/sun/star/loader/CannotActivateFactoryException.hpp"
#include "osl/conditn.hxx"
#include "tools/rcid.h" // RSC_STRING
...
...
@@ -857,6 +858,23 @@ UUIInteractionHelper::handleRequest_impl(
return
true
;
}
loader
::
CannotActivateFactoryException
aCannotActivateFactoryException
;
if
(
aAnyRequest
>>=
aCannotActivateFactoryException
)
{
ErrCode
nErrorCode
=
ERRCODE_UUI_CANNOT_ACTIVATE_FACTORY
;
std
::
vector
<
rtl
::
OUString
>
aArguments
;
aArguments
.
push_back
(
aCannotActivateFactoryException
.
Message
);
handleErrorHandlerRequest
(
task
::
InteractionClassification_ERROR
,
nErrorCode
,
aArguments
,
rRequest
->
getContinuations
(),
bObtainErrorStringOnly
,
bHasErrorString
,
rErrorString
);
return
true
;
}
///////////////////////////////////////////////////////////////////
// Handle requests which do not have a plain string representation.
...
...
uui/source/ids.hrc
Dosyayı görüntüle @
33f178c1
...
...
@@ -160,6 +160,7 @@
#define ERRCODE_UUI_LOCKING_LOCKED_SELF (ERRCODE_AREA_UUI + 60)
#define ERRCODE_UUI_LOCKING_NOT_LOCKED (ERRCODE_AREA_UUI + 61)
#define ERRCODE_UUI_LOCKING_LOCK_EXPIRED (ERRCODE_AREA_UUI + 62)
#define ERRCODE_UUI_CANNOT_ACTIVATE_FACTORY (ERRCODE_AREA_UUI + 63)
#define ERRCODE_AREA_UUI_UNKNOWNAUTH 25000
#define SSLWARN_TYPE_DOMAINMISMATCH 10
...
...
uui/source/ids.src
Dosyayı görüntüle @
33f178c1
...
...
@@ -403,6 +403,11 @@ Resource RID_UUI_ERRHDL
Text [ en-US ] = "Security Warning: Server Certificate Invalid";
};
String (ERRCODE_UUI_CANNOT_ACTIVATE_FACTORY & ERRCODE_RES_MASK)
{
Text [ en-US ] = "Component cannot be loaded, possibly broken or incomplete installation.\nFull error message:\n\n $(ARG1).";
};
};
...
...
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