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
4abae946
Kaydet (Commit)
4abae946
authored
Agu 22, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert include/sfx2/progress.hxx from String to OUString
Change-Id: Iab04310ff81a5f2fab20e924146eb471aa51d115
üst
1fe85b15
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
11 deletions
+12
-11
progress.hxx
include/sfx2/progress.hxx
+5
-3
request.hxx
include/sfx2/request.hxx
+0
-1
progress.cxx
sfx2/source/bastyp/progress.cxx
+7
-7
No files found.
include/sfx2/progress.hxx
Dosyayı görüntüle @
4abae946
...
@@ -26,7 +26,9 @@
...
@@ -26,7 +26,9 @@
#include <tools/link.hxx>
#include <tools/link.hxx>
#include <rtl/ustring.hxx>
#include <rtl/ustring.hxx>
class
String
;
namespace
rtl
{
class
OUString
;
};
class
SfxObjectShell
;
class
SfxObjectShell
;
struct
SfxProgress_Impl
;
struct
SfxProgress_Impl
;
struct
PlugInLoadStatus
;
struct
PlugInLoadStatus
;
...
@@ -42,13 +44,13 @@ class SFX2_DLLPUBLIC SfxProgress
...
@@ -42,13 +44,13 @@ class SFX2_DLLPUBLIC SfxProgress
public
:
public
:
SfxProgress
(
SfxObjectShell
*
pObjSh
,
SfxProgress
(
SfxObjectShell
*
pObjSh
,
const
String
&
rText
,
const
rtl
::
OU
String
&
rText
,
sal_uIntPtr
nRange
,
sal_Bool
bAllDocs
=
sal_False
,
sal_uIntPtr
nRange
,
sal_Bool
bAllDocs
=
sal_False
,
sal_Bool
bWait
=
sal_True
);
sal_Bool
bWait
=
sal_True
);
virtual
~
SfxProgress
();
virtual
~
SfxProgress
();
virtual
void
SetText
(
const
OUString
&
rText
);
virtual
void
SetText
(
const
OUString
&
rText
);
sal_Bool
SetStateText
(
sal_uIntPtr
nVal
,
const
String
&
rVal
,
sal_uIntPtr
nNewRange
=
0
);
sal_Bool
SetStateText
(
sal_uIntPtr
nVal
,
const
rtl
::
OU
String
&
rVal
,
sal_uIntPtr
nNewRange
=
0
);
virtual
sal_Bool
SetState
(
sal_uIntPtr
nVal
,
sal_uIntPtr
nNewRange
=
0
);
virtual
sal_Bool
SetState
(
sal_uIntPtr
nVal
,
sal_uIntPtr
nNewRange
=
0
);
sal_uIntPtr
GetState
()
const
{
return
nVal
;
}
sal_uIntPtr
GetState
()
const
{
return
nVal
;
}
...
...
include/sfx2/request.hxx
Dosyayı görüntüle @
4abae946
...
@@ -35,7 +35,6 @@ class SfxItemSet;
...
@@ -35,7 +35,6 @@ class SfxItemSet;
class
SfxItemPool
;
class
SfxItemPool
;
class
SfxShell
;
class
SfxShell
;
class
SfxSlot
;
class
SfxSlot
;
class
String
;
class
SfxViewFrame
;
class
SfxViewFrame
;
struct
SfxRequest_Impl
;
struct
SfxRequest_Impl
;
...
...
sfx2/source/bastyp/progress.cxx
Dosyayı görüntüle @
4abae946
...
@@ -116,13 +116,13 @@ SfxProgress::SfxProgress
...
@@ -116,13 +116,13 @@ SfxProgress::SfxProgress
When it is then the application will be
When it is then the application will be
used */
used */
const
String
&
rText
,
/* Text, which appears before the Statusmonitor
const
OUString
&
rText
,
/* Text, which appears before the Statusmonitor
in the status line */
in the status line */
sal_uIntPtr
nRange
,
/* Max value for range */
sal_uIntPtr
nRange
,
/* Max value for range */
sal_Bool
bAll
,
/* Disable all documents or only the document of the ViewFram */
sal_Bool
bAll
,
/* Disable all documents or only the document of the ViewFram */
sal_Bool
bWait
/* Activate the wait-Pointer initially (TRUE) */
sal_Bool
bWait
/* Activate the wait-Pointer initially (TRUE) */
)
)
/* [Description]
/* [Description]
...
@@ -249,9 +249,9 @@ long TimeOut_Impl( void*, void* pArgV )
...
@@ -249,9 +249,9 @@ long TimeOut_Impl( void*, void* pArgV )
sal_Bool
SfxProgress
::
SetStateText
sal_Bool
SfxProgress
::
SetStateText
(
(
sal_uLong
nNewVal
,
/* New value for the progress-bar */
sal_uLong
nNewVal
,
/* New value for the progress-bar */
const
String
&
rNewVal
,
/* Status as Text */
const
OUString
&
rNewVal
,
/* Status as Text */
sal_uLong
nNewRange
/* new maximum value, 0 for retaining the old */
sal_uLong
nNewRange
/* new maximum value, 0 for retaining the old */
)
)
{
{
...
...
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