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
bb39bea2
Kaydet (Commit)
bb39bea2
authored
Şub 14, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool->bool
Change-Id: I475daf63c9548176f37449a26731cb176cf0ea3e
üst
6c5c5684
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
12 deletions
+12
-12
IControlReferenceHandler.hxx
include/formula/IControlReferenceHandler.hxx
+1
-1
Formula.cxx
reportdesign/source/ui/dlg/Formula.cxx
+1
-1
Formula.hxx
reportdesign/source/ui/inc/Formula.hxx
+1
-1
formula.cxx
sc/source/ui/formdlg/formula.cxx
+1
-1
anyrefdg.hxx
sc/source/ui/inc/anyrefdg.hxx
+4
-4
formula.hxx
sc/source/ui/inc/formula.hxx
+1
-1
anyrefdg.cxx
sc/source/ui/miscdlgs/anyrefdg.cxx
+3
-3
No files found.
include/formula/IControlReferenceHandler.hxx
Dosyayı görüntüle @
bb39bea2
...
@@ -29,7 +29,7 @@ namespace formula
...
@@ -29,7 +29,7 @@ namespace formula
{
{
public
:
public
:
virtual
void
ShowReference
(
const
OUString
&
_sRef
)
=
0
;
virtual
void
ShowReference
(
const
OUString
&
_sRef
)
=
0
;
virtual
void
HideReference
(
sal_Bool
bDoneRefMode
=
sal_T
rue
)
=
0
;
virtual
void
HideReference
(
bool
bDoneRefMode
=
t
rue
)
=
0
;
virtual
void
ReleaseFocus
(
RefEdit
*
pEdit
,
RefButton
*
pButton
=
NULL
)
=
0
;
virtual
void
ReleaseFocus
(
RefEdit
*
pEdit
,
RefButton
*
pButton
=
NULL
)
=
0
;
virtual
void
ToggleCollapsed
(
RefEdit
*
pEdit
,
RefButton
*
pButton
=
NULL
)
=
0
;
virtual
void
ToggleCollapsed
(
RefEdit
*
pEdit
,
RefButton
*
pButton
=
NULL
)
=
0
;
...
...
reportdesign/source/ui/dlg/Formula.cxx
Dosyayı görüntüle @
bb39bea2
...
@@ -177,7 +177,7 @@ void FormulaDialog::ShowReference(const OUString& /*_sRef*/)
...
@@ -177,7 +177,7 @@ void FormulaDialog::ShowReference(const OUString& /*_sRef*/)
{
{
}
}
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
void
FormulaDialog
::
HideReference
(
sal_B
ool
/*bDoneRefMode*/
)
void
FormulaDialog
::
HideReference
(
b
ool
/*bDoneRefMode*/
)
{
{
}
}
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
...
...
reportdesign/source/ui/inc/Formula.hxx
Dosyayı görüntüle @
bb39bea2
...
@@ -88,7 +88,7 @@ public:
...
@@ -88,7 +88,7 @@ public:
// IControlReferenceHandler
// IControlReferenceHandler
virtual
void
ShowReference
(
const
OUString
&
_sRef
);
virtual
void
ShowReference
(
const
OUString
&
_sRef
);
virtual
void
HideReference
(
sal_Bool
bDoneRefMode
=
sal_T
rue
);
virtual
void
HideReference
(
bool
bDoneRefMode
=
t
rue
);
virtual
void
ReleaseFocus
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
virtual
void
ReleaseFocus
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
virtual
void
ToggleCollapsed
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
virtual
void
ToggleCollapsed
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
...
...
sc/source/ui/formdlg/formula.cxx
Dosyayı görüntüle @
bb39bea2
...
@@ -501,7 +501,7 @@ void ScFormulaDlg::ShowReference(const OUString& _sFormula)
...
@@ -501,7 +501,7 @@ void ScFormulaDlg::ShowReference(const OUString& _sFormula)
{
{
m_aHelper
.
ShowReference
(
_sFormula
);
m_aHelper
.
ShowReference
(
_sFormula
);
}
}
void
ScFormulaDlg
::
HideReference
(
sal_B
ool
bDoneRefMode
)
void
ScFormulaDlg
::
HideReference
(
b
ool
bDoneRefMode
)
{
{
m_aHelper
.
HideReference
(
bDoneRefMode
);
m_aHelper
.
HideReference
(
bDoneRefMode
);
}
}
...
...
sc/source/ui/inc/anyrefdg.hxx
Dosyayı görüntüle @
bb39bea2
...
@@ -130,7 +130,7 @@ private:
...
@@ -130,7 +130,7 @@ private:
protected
:
protected
:
virtual
sal_B
ool
DoClose
(
sal_uInt16
nId
);
virtual
b
ool
DoClose
(
sal_uInt16
nId
);
void
SetDispatcherLock
(
bool
bLock
);
void
SetDispatcherLock
(
bool
bLock
);
...
@@ -156,7 +156,7 @@ public:
...
@@ -156,7 +156,7 @@ public:
virtual
bool
IsDocAllowed
(
SfxObjectShell
*
pDocSh
)
const
;
virtual
bool
IsDocAllowed
(
SfxObjectShell
*
pDocSh
)
const
;
virtual
void
ShowReference
(
const
OUString
&
rStr
);
virtual
void
ShowReference
(
const
OUString
&
rStr
);
virtual
void
HideReference
(
sal_Bool
bDoneRefMode
=
sal_T
rue
);
virtual
void
HideReference
(
bool
bDoneRefMode
=
t
rue
);
virtual
void
ToggleCollapsed
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
virtual
void
ToggleCollapsed
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
virtual
void
ReleaseFocus
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
virtual
void
ReleaseFocus
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
...
@@ -170,7 +170,7 @@ public:
...
@@ -170,7 +170,7 @@ public:
bool
EnterRefMode
();
bool
EnterRefMode
();
bool
LeaveRefMode
();
bool
LeaveRefMode
();
inline
bool
CanInputStart
(
const
formula
::
RefEdit
*
pEdit
);
inline
bool
CanInputStart
(
const
formula
::
RefEdit
*
pEdit
);
inline
bool
CanInputDone
(
sal_B
ool
bForced
);
inline
bool
CanInputDone
(
b
ool
bForced
);
};
};
//============================================================================
//============================================================================
...
@@ -322,7 +322,7 @@ inline bool ScRefHandler::CanInputStart( const formula::RefEdit *pEdit )
...
@@ -322,7 +322,7 @@ inline bool ScRefHandler::CanInputStart( const formula::RefEdit *pEdit )
return
m_aHelper
.
CanInputStart
(
pEdit
);
return
m_aHelper
.
CanInputStart
(
pEdit
);
}
}
inline
bool
ScRefHandler
::
CanInputDone
(
sal_B
ool
bForced
)
inline
bool
ScRefHandler
::
CanInputDone
(
b
ool
bForced
)
{
{
return
m_aHelper
.
CanInputDone
(
bForced
);
return
m_aHelper
.
CanInputDone
(
bForced
);
}
}
...
...
sc/source/ui/inc/formula.hxx
Dosyayı görüntüle @
bb39bea2
...
@@ -87,7 +87,7 @@ public:
...
@@ -87,7 +87,7 @@ public:
// sc::IAnyRefDialog
// sc::IAnyRefDialog
virtual
void
ShowReference
(
const
OUString
&
_sRef
);
virtual
void
ShowReference
(
const
OUString
&
_sRef
);
virtual
void
HideReference
(
sal_Bool
bDoneRefMode
=
sal_T
rue
);
virtual
void
HideReference
(
bool
bDoneRefMode
=
t
rue
);
virtual
void
SetReference
(
const
ScRange
&
rRef
,
ScDocument
*
pD
);
virtual
void
SetReference
(
const
ScRange
&
rRef
,
ScDocument
*
pD
);
virtual
void
ReleaseFocus
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
virtual
void
ReleaseFocus
(
formula
::
RefEdit
*
pEdit
,
formula
::
RefButton
*
pButton
=
NULL
);
...
...
sc/source/ui/miscdlgs/anyrefdg.cxx
Dosyayı görüntüle @
bb39bea2
...
@@ -910,10 +910,10 @@ bool ScRefHandler::IsRefInputMode() const
...
@@ -910,10 +910,10 @@ bool ScRefHandler::IsRefInputMode() const
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
sal_B
ool
ScRefHandler
::
DoClose
(
sal_uInt16
nId
)
b
ool
ScRefHandler
::
DoClose
(
sal_uInt16
nId
)
{
{
m_aHelper
.
DoClose
(
nId
);
m_aHelper
.
DoClose
(
nId
);
return
sal_T
rue
;
return
t
rue
;
}
}
void
ScRefHandler
::
SetDispatcherLock
(
bool
bLock
)
void
ScRefHandler
::
SetDispatcherLock
(
bool
bLock
)
...
@@ -1009,7 +1009,7 @@ bool ScRefHandler::ParseWithNames( ScRangeList& rRanges, const OUString& rStr, S
...
@@ -1009,7 +1009,7 @@ bool ScRefHandler::ParseWithNames( ScRangeList& rRanges, const OUString& rStr, S
return
m_aHelper
.
ParseWithNames
(
rRanges
,
rStr
,
pDoc
);
return
m_aHelper
.
ParseWithNames
(
rRanges
,
rStr
,
pDoc
);
}
}
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
void
ScRefHandler
::
HideReference
(
sal_B
ool
bDoneRefMode
)
void
ScRefHandler
::
HideReference
(
b
ool
bDoneRefMode
)
{
{
m_aHelper
.
HideReference
(
bDoneRefMode
);
m_aHelper
.
HideReference
(
bDoneRefMode
);
}
}
...
...
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