diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 10:43:39 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 13:44:11 +0200 |
commit | f5a1a26d8fe3aaf7ef88980b44b830f5b1702108 (patch) | |
tree | 46a3e126749c38ad736dda4b74433680679e1645 /svtools/source/control/ruler.cxx | |
parent | 97e000474db7c1ae3ce4b160a860ef2bd930380e (diff) |
Ruler::StartDrag return type wants to be bool
Change-Id: Ica4957a5575a6ec5d6ff2b6fddaa3d637426d851
Diffstat (limited to 'svtools/source/control/ruler.cxx')
-rw-r--r-- | svtools/source/control/ruler.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/control/ruler.cxx b/svtools/source/control/ruler.cxx index d65875ce26f9..1ade3818682d 100644 --- a/svtools/source/control/ruler.cxx +++ b/svtools/source/control/ruler.cxx @@ -2287,12 +2287,12 @@ void Ruler::DataChanged( const DataChangedEvent& rDCEvt ) } } -long Ruler::StartDrag() +bool Ruler::StartDrag() { if ( maStartDragHdl.IsSet() ) return maStartDragHdl.Call( this ); else - return sal_False; + return false; } void Ruler::Drag() |