summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-28 16:35:06 +0200
committerNoel Grandin <noel@peralex.com>2015-08-31 09:50:11 +0200
commitb6e95a8c9997e03099492079ebc34c4a47b8b502 (patch)
tree9955ffbc914a27e1589c22e3f2fbc0d4edb7b503 /svtools
parent410c06bec452b09cd15ddfcb82b8b2b0508f3c55 (diff)
convert Link<> to typed
and remove some dead code Change-Id: I6a42dbaea5053b4aa3c47b3f154410b05f32dfe4
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/control/ruler.cxx9
1 files changed, 1 insertions, 8 deletions
diff --git a/svtools/source/control/ruler.cxx b/svtools/source/control/ruler.cxx
index 4dcc834351a2..de25ff67a326 100644
--- a/svtools/source/control/ruler.cxx
+++ b/svtools/source/control/ruler.cxx
@@ -2282,25 +2282,19 @@ void Ruler::DataChanged( const DataChangedEvent& rDCEvt )
bool Ruler::StartDrag()
{
- if ( maStartDragHdl.IsSet() )
- return maStartDragHdl.Call( this );
- else
- return false;
+ return false;
}
void Ruler::Drag()
{
- maDragHdl.Call( this );
}
void Ruler::EndDrag()
{
- maEndDragHdl.Call( this );
}
void Ruler::Click()
{
- maClickHdl.Call( this );
}
void Ruler::DoubleClick()
@@ -2310,7 +2304,6 @@ void Ruler::DoubleClick()
void Ruler::ExtraDown()
{
- maExtraDownHdl.Call( this );
}
void Ruler::Activate()