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
96b5d4f6
Kaydet (Commit)
96b5d4f6
authored
Mar 17, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
uui: prefer passing OUString by reference
Change-Id: Iec1fb3fd063d73f04a1600a21d6129e4cd5476b4
üst
4386863e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
7 deletions
+8
-7
iahndl-authentication.cxx
uui/source/iahndl-authentication.cxx
+2
-2
iahndl-ssl.cxx
uui/source/iahndl-ssl.cxx
+1
-1
iahndl.cxx
uui/source/iahndl.cxx
+2
-1
iahndl.hxx
uui/source/iahndl.hxx
+1
-1
passworddlg.cxx
uui/source/passworddlg.cxx
+1
-1
passworddlg.hxx
uui/source/passworddlg.hxx
+1
-1
No files found.
uui/source/iahndl-authentication.cxx
Dosyayı görüntüle @
96b5d4f6
...
@@ -507,7 +507,7 @@ executePasswordDialog(
...
@@ -507,7 +507,7 @@ executePasswordDialog(
Window
*
pParent
,
Window
*
pParent
,
LoginErrorInfo
&
rInfo
,
LoginErrorInfo
&
rInfo
,
task
::
PasswordRequestMode
nMode
,
task
::
PasswordRequestMode
nMode
,
OUString
aDocName
,
const
OUString
&
aDocName
,
bool
bMSCryptoMode
,
bool
bMSCryptoMode
,
bool
bIsPasswordToModify
,
bool
bIsPasswordToModify
,
bool
bIsSimplePasswordRequest
)
bool
bIsSimplePasswordRequest
)
...
@@ -569,7 +569,7 @@ handlePasswordRequest_(
...
@@ -569,7 +569,7 @@ handlePasswordRequest_(
task
::
PasswordRequestMode
nMode
,
task
::
PasswordRequestMode
nMode
,
uno
::
Sequence
<
uno
::
Reference
<
task
::
XInteractionContinuation
>
>
const
&
uno
::
Sequence
<
uno
::
Reference
<
task
::
XInteractionContinuation
>
>
const
&
rContinuations
,
rContinuations
,
OUString
aDocumentName
,
const
OUString
&
aDocumentName
,
bool
bMSCryptoMode
,
bool
bMSCryptoMode
,
bool
bIsPasswordToModify
,
bool
bIsPasswordToModify
,
bool
bIsSimplePasswordRequest
=
false
)
bool
bIsSimplePasswordRequest
=
false
)
...
...
uui/source/iahndl-ssl.cxx
Dosyayı görüntüle @
96b5d4f6
...
@@ -80,7 +80,7 @@ getContentPart( const OUString& _rRawString )
...
@@ -80,7 +80,7 @@ getContentPart( const OUString& _rRawString )
bool
bool
isDomainMatch
(
isDomainMatch
(
OUString
hostName
,
uno
::
Sequence
<
OUString
>
certHostNames
)
const
OUString
&
hostName
,
uno
::
Sequence
<
OUString
>
certHostNames
)
{
{
for
(
int
i
=
0
;
i
<
certHostNames
.
getLength
();
i
++
){
for
(
int
i
=
0
;
i
<
certHostNames
.
getLength
();
i
++
){
OUString
element
=
certHostNames
[
i
];
OUString
element
=
certHostNames
[
i
];
...
...
uui/source/iahndl.cxx
Dosyayı görüntüle @
96b5d4f6
...
@@ -257,9 +257,10 @@ UUIInteractionHelper::getStringFromRequest(
...
@@ -257,9 +257,10 @@ UUIInteractionHelper::getStringFromRequest(
OUString
OUString
UUIInteractionHelper
::
replaceMessageWithArguments
(
UUIInteractionHelper
::
replaceMessageWithArguments
(
OUString
aMessage
,
const
OUString
&
_
aMessage
,
std
::
vector
<
OUString
>
const
&
rArguments
)
std
::
vector
<
OUString
>
const
&
rArguments
)
{
{
OUString
aMessage
=
_aMessage
;
for
(
sal_Int32
i
=
0
;;)
for
(
sal_Int32
i
=
0
;;)
{
{
i
=
aMessage
.
indexOf
(
"$(ARG"
,
i
);
i
=
aMessage
.
indexOf
(
"$(ARG"
,
i
);
...
...
uui/source/iahndl.hxx
Dosyayı görüntüle @
96b5d4f6
...
@@ -122,7 +122,7 @@ public:
...
@@ -122,7 +122,7 @@ public:
// Helper.
// Helper.
static
OUString
static
OUString
replaceMessageWithArguments
(
replaceMessageWithArguments
(
OUString
aMessage
,
const
OUString
&
aMessage
,
std
::
vector
<
OUString
>
const
&
rArguments
);
std
::
vector
<
OUString
>
const
&
rArguments
);
::
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
uno
::
XComponentContext
>
::
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
uno
::
XComponentContext
>
...
...
uui/source/passworddlg.cxx
Dosyayı görüntüle @
96b5d4f6
...
@@ -27,7 +27,7 @@ using namespace ::com::sun::star;
...
@@ -27,7 +27,7 @@ using namespace ::com::sun::star;
PasswordDialog
::
PasswordDialog
(
Window
*
_pParent
,
PasswordDialog
::
PasswordDialog
(
Window
*
_pParent
,
task
::
PasswordRequestMode
nDlgMode
,
ResMgr
*
pResMgr
,
task
::
PasswordRequestMode
nDlgMode
,
ResMgr
*
pResMgr
,
OUString
&
aDocURL
,
bool
bOpenToModify
,
bool
bIsSimplePasswordRequest
)
const
OUString
&
aDocURL
,
bool
bOpenToModify
,
bool
bIsSimplePasswordRequest
)
:
ModalDialog
(
_pParent
,
"PasswordDialog"
,
"uui/ui/password.ui"
)
:
ModalDialog
(
_pParent
,
"PasswordDialog"
,
"uui/ui/password.ui"
)
,
nMinLen
(
1
)
,
nMinLen
(
1
)
,
aPasswdMismatch
(
ResId
(
STR_PASSWORD_MISMATCH
,
*
pResMgr
))
,
aPasswdMismatch
(
ResId
(
STR_PASSWORD_MISMATCH
,
*
pResMgr
))
...
...
uui/source/passworddlg.hxx
Dosyayı görüntüle @
96b5d4f6
...
@@ -44,7 +44,7 @@ class PasswordDialog : public ModalDialog
...
@@ -44,7 +44,7 @@ class PasswordDialog : public ModalDialog
DECL_LINK
(
OKHdl_Impl
,
void
*
);
DECL_LINK
(
OKHdl_Impl
,
void
*
);
public
:
public
:
PasswordDialog
(
Window
*
pParent
,
::
com
::
sun
::
star
::
task
::
PasswordRequestMode
nDlgMode
,
ResMgr
*
pResMgr
,
OUString
&
aDocURL
,
PasswordDialog
(
Window
*
pParent
,
::
com
::
sun
::
star
::
task
::
PasswordRequestMode
nDlgMode
,
ResMgr
*
pResMgr
,
const
OUString
&
aDocURL
,
bool
bOpenToModify
=
false
,
bool
bIsSimplePasswordRequest
=
false
);
bool
bOpenToModify
=
false
,
bool
bIsSimplePasswordRequest
=
false
);
void
SetMinLen
(
sal_uInt16
nMin
)
{
nMinLen
=
nMin
;
}
void
SetMinLen
(
sal_uInt16
nMin
)
{
nMinLen
=
nMin
;
}
...
...
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