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
1474d476
Kaydet (Commit)
1474d476
authored
Eyl 04, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert svx/source/inc/docrecovery.hxx from String to OUString
Change-Id: I2227e623dc6b27b425504329db230819a20160e0
üst
5ddc4cc6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
22 deletions
+22
-22
docrecovery.cxx
svx/source/dialog/docrecovery.cxx
+6
-6
docrecovery.hxx
svx/source/inc/docrecovery.hxx
+16
-16
No files found.
svx/source/dialog/docrecovery.cxx
Dosyayı görüntüle @
1474d476
...
...
@@ -829,7 +829,7 @@ void SaveProgressDialog::end()
//===============================================
RecovDocListEntry
::
RecovDocListEntry
(
SvTreeListEntry
*
pEntry
,
sal_uInt16
nFlags
,
const
String
&
sText
)
const
OUString
&
sText
)
:
SvLBoxString
(
pEntry
,
nFlags
,
sText
)
{
}
...
...
@@ -1336,9 +1336,9 @@ IMPL_LINK_NOARG(RecoveryDialog, CancelButtonHdl)
}
//===============================================
String
RecoveryDialog
::
impl_getStatusString
(
const
TURLInfo
&
rInfo
)
const
OU
String
RecoveryDialog
::
impl_getStatusString
(
const
TURLInfo
&
rInfo
)
const
{
String
sStatus
;
OU
String
sStatus
;
switch
(
rInfo
.
RecoveryState
)
{
case
E_SUCCESSFULLY_RECOVERED
:
...
...
@@ -1764,12 +1764,12 @@ void BrokenRecoveryDialog::impl_askForSavePath()
}
}
String
ErrorRepSendDialog
::
GetDocType
(
void
)
const
OU
String
ErrorRepSendDialog
::
GetDocType
(
void
)
const
{
return
maDocTypeED
.
GetText
();
}
String
ErrorRepSendDialog
::
GetUsing
(
void
)
const
OU
String
ErrorRepSendDialog
::
GetUsing
(
void
)
const
{
return
maUsingML
.
GetText
();
}
...
...
@@ -1779,7 +1779,7 @@ void BrokenRecoveryDialog::impl_askForSavePath()
return
maContactCB
.
IsChecked
();
}
String
ErrorRepSendDialog
::
GetEMailAddress
(
void
)
const
OU
String
ErrorRepSendDialog
::
GetEMailAddress
(
void
)
const
{
return
maEMailAddrED
.
GetText
();
}
...
...
svx/source/inc/docrecovery.hxx
Dosyayı görüntüle @
1474d476
...
...
@@ -494,7 +494,7 @@ class SaveProgressDialog : public ModalDialog
FixedText
m_aHintFT
;
FixedText
m_aProgrFT
;
String
m_aProgrBaseTxt
;
OUString
m_aProgrBaseTxt
;
Window
m_aProgrParent
;
// @short TODO
...
...
@@ -548,7 +548,7 @@ public:
/** @short TODO */
RecovDocListEntry
(
SvTreeListEntry
*
pEntry
,
sal_uInt16
nFlags
,
const
String
&
sText
);
const
OU
String
&
sText
);
//---------------------------------------
/** @short TODO */
...
...
@@ -612,11 +612,11 @@ class RecoveryDialog : public IExtendedTabPage
FixedLine
m_aBottomFL
;
PushButton
m_aNextBtn
;
CancelButton
m_aCancelBtn
;
String
m_aNextStr
;
String
m_aTitleRecoveryInProgress
;
String
m_aTitleRecoveryReport
;
String
m_aRecoveryOnlyFinish
;
String
m_aRecoveryOnlyFinishDescr
;
OUString
m_aNextStr
;
OUString
m_aTitleRecoveryInProgress
;
OUString
m_aTitleRecoveryReport
;
OUString
m_aRecoveryOnlyFinish
;
OUString
m_aRecoveryOnlyFinishDescr
;
PushButton
*
m_pDefButton
;
RecoveryCore
*
m_pCore
;
...
...
@@ -678,7 +678,7 @@ class RecoveryDialog : public IExtendedTabPage
//---------------------------------------
/** @short TODO */
String
impl_getStatusString
(
const
TURLInfo
&
rInfo
)
const
;
OU
String
impl_getStatusString
(
const
TURLInfo
&
rInfo
)
const
;
};
//===============================================
...
...
@@ -789,13 +789,13 @@ class BrokenRecoveryDialog : public ModalDialog
,
mbAllowContact
(
false
)
{}
String
maHTTPProxyServer
;
String
maHTTPProxyPort
;
OUString
maHTTPProxyServer
;
OUString
maHTTPProxyPort
;
int
miHTTPConnectionType
;
bool
mbAllowContact
;
String
maReturnAddress
;
String
maSubject
;
String
maBody
;
OUString
maReturnAddress
;
OUString
maSubject
;
OUString
maBody
;
};
class
ErrorDescriptionEdit
:
public
MultiLineEdit
...
...
@@ -846,10 +846,10 @@ class BrokenRecoveryDialog : public ModalDialog
ErrorRepSendDialog
(
Window
*
_pParent
);
virtual
~
ErrorRepSendDialog
();
String
GetDocType
(
void
)
const
;
String
GetUsing
(
void
)
const
;
OUString
GetDocType
(
void
)
const
;
OUString
GetUsing
(
void
)
const
;
bool
IsContactAllowed
(
void
)
const
;
String
GetEMailAddress
(
void
)
const
;
OUString
GetEMailAddress
(
void
)
const
;
bool
ReadParams
();
bool
SaveParams
();
...
...
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