projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixing memory leak (reported by Ken Thomases)
[wxWidgets.git]
/
src
/
univ
/
scrarrow.cpp
diff --git
a/src/univ/scrarrow.cpp
b/src/univ/scrarrow.cpp
index b35a45a2bc311788bbf9731a5888304d9e6bbaec..83ad8228370084302385b6478183ddf33dc1e369 100644
(file)
--- a/
src/univ/scrarrow.cpp
+++ b/
src/univ/scrarrow.cpp
@@
-6,7
+6,7
@@
// Created: 22.01.01
// RCS-ID: $Id$
// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
// Created: 22.01.01
// RCS-ID: $Id$
// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
-// Licence: wxWi
dget
s licence
+// Licence: wxWi
ndow
s licence
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
@@
-181,10
+181,10
@@
bool wxScrollArrows::HandleMouseMove(const wxMouseEvent& event) const
if ( arrow == m_captureData->m_arrowPressed )
{
// resume now
if ( arrow == m_captureData->m_arrowPressed )
{
// resume now
- m_control->SetArrowFlag(arrow, wxCONTROL_PRESSED,
TRUE
);
+ m_control->SetArrowFlag(arrow, wxCONTROL_PRESSED,
true
);
timer->Start();
timer->Start();
- return
TRUE
;
+ return
true
;
}
}
else // if ( 1 ) FIXME: m_control->ShouldPauseScrolling() )
}
}
else // if ( 1 ) FIXME: m_control->ShouldPauseScrolling() )
@@
-194,14
+194,14
@@
bool wxScrollArrows::HandleMouseMove(const wxMouseEvent& event) const
{
// stop as the mouse left the arrow
m_control->SetArrowFlag(m_captureData->m_arrowPressed,
{
// stop as the mouse left the arrow
m_control->SetArrowFlag(m_captureData->m_arrowPressed,
- wxCONTROL_PRESSED,
FALSE
);
+ wxCONTROL_PRESSED,
false
);
timer->Stop();
timer->Stop();
- return
TRUE
;
+ return
true
;
}
}
}
}
- return
FALSE
;
+ return
false
;
}
// reset the wxCONTROL_CURRENT flag for the arrows which don't have the
}
// reset the wxCONTROL_CURRENT flag for the arrows which don't have the
@@
-209,7
+209,7
@@
bool wxScrollArrows::HandleMouseMove(const wxMouseEvent& event) const
UpdateCurrentFlag(Arrow_First, arrow);
UpdateCurrentFlag(Arrow_Second, arrow);
UpdateCurrentFlag(Arrow_First, arrow);
UpdateCurrentFlag(Arrow_Second, arrow);
- // return
TRUE
if it was really an event for an arrow
+ // return
true
if it was really an event for an arrow
return !event.Leaving() && arrow != Arrow_None;
}
return !event.Leaving() && arrow != Arrow_None;
}
@@
-219,7
+219,7
@@
bool wxScrollArrows::HandleMouse(const wxMouseEvent& event) const
if ( btn == -1 )
{
// we only care about button press/release events
if ( btn == -1 )
{
// we only care about button press/release events
- return
FALSE
;
+ return
false
;
}
if ( event.ButtonDown() || event.ButtonDClick() )
}
if ( event.ButtonDown() || event.ButtonDClick() )
@@
-230,13
+230,13
@@
bool wxScrollArrows::HandleMouse(const wxMouseEvent& event) const
if ( arrow == Arrow_None )
{
// mouse pressed over something else
if ( arrow == Arrow_None )
{
// mouse pressed over something else
- return
FALSE
;
+ return
false
;
}
if ( m_control->GetArrowState(arrow) & wxCONTROL_DISABLED )
{
// don't allow to press disabled arrows
}
if ( m_control->GetArrowState(arrow) & wxCONTROL_DISABLED )
{
// don't allow to press disabled arrows
- return
TRUE
;
+ return
true
;
}
wxConstCast(this, wxScrollArrows)->m_captureData =
}
wxConstCast(this, wxScrollArrows)->m_captureData =
@@
-257,7
+257,7
@@
bool wxScrollArrows::HandleMouse(const wxMouseEvent& event) const
{
m_captureData->m_timerScroll = tmpTimerScroll;
{
m_captureData->m_timerScroll = tmpTimerScroll;
- m_control->SetArrowFlag(arrow, wxCONTROL_PRESSED,
TRUE
);
+ m_control->SetArrowFlag(arrow, wxCONTROL_PRESSED,
true
);
}
else
{
}
else
{
@@
-274,14
+274,14
@@
bool wxScrollArrows::HandleMouse(const wxMouseEvent& event) const
delete m_captureData;
wxConstCast(this, wxScrollArrows)->m_captureData = NULL;
delete m_captureData;
wxConstCast(this, wxScrollArrows)->m_captureData = NULL;
- m_control->SetArrowFlag(arrow, wxCONTROL_PRESSED,
FALSE
);
+ m_control->SetArrowFlag(arrow, wxCONTROL_PRESSED,
false
);
}
else
{
// we don't process this
}
else
{
// we don't process this
- return
FALSE
;
+ return
false
;
}
}
- return
TRUE
;
+ return
true
;
}
}