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
da20c7f4
Kaydet (Commit)
da20c7f4
authored
Eki 31, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove unnecessary use of OUString constructor in SHELL module
Change-Id: Ibdb750dc8e0f4cd0f186d5801c0a269edd939547
üst
cd30747b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
14 deletions
+14
-14
cmdmailmsg.cxx
shell/source/cmdmail/cmdmailmsg.cxx
+7
-7
cmdmailsuppl.cxx
shell/source/cmdmail/cmdmailsuppl.cxx
+1
-1
shellexec.cxx
shell/source/unix/exec/shellexec.cxx
+1
-1
SysShExec.cxx
shell/source/win32/SysShExec.cxx
+1
-1
smplmailsuppl.cxx
shell/source/win32/simplemail/smplmailsuppl.cxx
+1
-1
TestSmplMail.cxx
shell/source/win32/workbench/TestSmplMail.cxx
+3
-3
No files found.
shell/source/cmdmail/cmdmailmsg.cxx
Dosyayı görüntüle @
da20c7f4
...
...
@@ -166,25 +166,25 @@ Sequence< OUString > SAL_CALL CmdMailMsg::getElementNames( )
Sequence
<
OUString
>
aRet
(
7
);
if
(
!
m_aBody
.
isEmpty
()
)
aRet
[
nItems
++
]
=
OUString
(
"body"
)
;
aRet
[
nItems
++
]
=
"body"
;
if
(
!
m_aOriginator
.
isEmpty
()
)
aRet
[
nItems
++
]
=
OUString
(
"from"
)
;
aRet
[
nItems
++
]
=
"from"
;
if
(
!
m_aRecipient
.
isEmpty
()
)
aRet
[
nItems
++
]
=
OUString
(
"to"
)
;
aRet
[
nItems
++
]
=
"to"
;
if
(
m_CcRecipients
.
getLength
()
)
aRet
[
nItems
++
]
=
OUString
(
"cc"
)
;
aRet
[
nItems
++
]
=
"cc"
;
if
(
m_BccRecipients
.
getLength
()
)
aRet
[
nItems
++
]
=
OUString
(
"bcc"
)
;
aRet
[
nItems
++
]
=
"bcc"
;
if
(
!
m_aSubject
.
isEmpty
()
)
aRet
[
nItems
++
]
=
OUString
(
"subject"
)
;
aRet
[
nItems
++
]
=
"subject"
;
if
(
m_Attachments
.
getLength
()
)
aRet
[
nItems
++
]
=
OUString
(
"attachment"
)
;
aRet
[
nItems
++
]
=
"attachment"
;
aRet
.
realloc
(
nItems
);
return
aRet
;
...
...
shell/source/cmdmail/cmdmailsuppl.cxx
Dosyayı görüntüle @
da20c7f4
...
...
@@ -145,7 +145,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM
OUString
aConfigRoot
=
"org.openoffice.Office.Common/ExternalMailer"
;
PropertyValue
aProperty
;
aProperty
.
Name
=
OUString
(
"nodepath"
)
;
aProperty
.
Name
=
"nodepath"
;
aProperty
.
Value
=
makeAny
(
aConfigRoot
);
Sequence
<
Any
>
aArgumentList
(
1
);
...
...
shell/source/unix/exec/shellexec.cxx
Dosyayı görüntüle @
da20c7f4
...
...
@@ -66,7 +66,7 @@ namespace // private
Sequence
<
OUString
>
SAL_CALL
ShellExec_getSupportedServiceNames
()
{
Sequence
<
OUString
>
aRet
(
1
);
aRet
[
0
]
=
OUString
(
"com.sun.star.sys.shell.SystemShellExecute"
)
;
aRet
[
0
]
=
"com.sun.star.sys.shell.SystemShellExecute"
;
return
aRet
;
}
}
...
...
shell/source/win32/SysShExec.cxx
Dosyayı görüntüle @
da20c7f4
...
...
@@ -66,7 +66,7 @@ namespace // private
Sequence
<
OUString
>
SAL_CALL
SysShExec_getSupportedServiceNames
()
{
Sequence
<
OUString
>
aRet
(
1
);
aRet
[
0
]
=
OUString
(
"com.sun.star.sys.shell.SystemShellExecute"
)
;
aRet
[
0
]
=
"com.sun.star.sys.shell.SystemShellExecute"
;
return
aRet
;
}
...
...
shell/source/win32/simplemail/smplmailsuppl.cxx
Dosyayı görüntüle @
da20c7f4
...
...
@@ -39,7 +39,7 @@ namespace // private
Sequence
<
OUString
>
SAL_CALL
Component_getSupportedServiceNames
()
{
Sequence
<
OUString
>
aRet
(
1
);
aRet
[
0
]
=
OUString
(
"com.sun.star.sys.shell.SimpleSystemMail"
)
;
aRet
[
0
]
=
"com.sun.star.sys.shell.SimpleSystemMail"
;
return
aRet
;
}
...
...
shell/source/win32/workbench/TestSmplMail.cxx
Dosyayı görüntüle @
da20c7f4
...
...
@@ -110,12 +110,12 @@ int SAL_CALL main(int , char*, char* )
xSmplMailMsg
->
setOriginator
(
OUString
(
"tino.rachui@germany.sun.com"
)
);
Sequence
<
OUString
>
ccRecips
(
1
);
ccRecips
[
0
]
=
OUString
(
"tino.rachui@germany.sun.com"
)
;
ccRecips
[
0
]
=
"tino.rachui@germany.sun.com"
;
xSmplMailMsg
->
setCcRecipient
(
ccRecips
);
Sequence
<
OUString
>
bccRecips
(
1
);
bccRecips
[
0
]
=
OUString
(
"tino.rachui@germany.sun.com"
)
;
bccRecips
[
0
]
=
"tino.rachui@germany.sun.com"
;
xSmplMailMsg
->
setBccRecipient
(
bccRecips
);
...
...
@@ -129,7 +129,7 @@ int SAL_CALL main(int , char*, char* )
osl
::
FileBase
::
getFileURLFromSystemPath
(
aFile
,
aFileURL
);
attachements
[
0
]
=
aFileURL
;
aFile
=
OUString
(
"D:
\\
Projects
\\
gsl
\\
shell
\\
wntmsci7
\\
bin
\\
testsyssh.exe"
)
;
aFile
=
"D:
\\
Projects
\\
gsl
\\
shell
\\
wntmsci7
\\
bin
\\
testsyssh.exe"
;
osl
::
FileBase
::
getFileURLFromSystemPath
(
aFile
,
aFileURL
);
attachements
[
1
]
=
aFile
;
...
...
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