summaryrefslogtreecommitdiffstats
path: root/sc/inc/brdcst.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-27 16:57:21 +0200
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-09-06 15:47:44 -0500
commit5bce32904091ffe28884fd5c0f4801ee82bad101 (patch)
treefc2573078a858de456a0dc7b7810176d433241c7 /sc/inc/brdcst.hxx
parentMake OOO_EXIT_POST_STARTUP behave more nicely when blank (diff)
downloadcore-5bce32904091ffe28884fd5c0f4801ee82bad101.tar.gz
core-5bce32904091ffe28884fd5c0f4801ee82bad101.zip
SfxHint: convert home-grown RTTI to normal C++ RTTI
Also note that I fixed a bug in SvxFontMenuControl::Notify where the if statement had the check the wrong way around. Change-Id: I611e8929c65818191e36bd80f2b985820ada4411 Reviewed-on: https://gerrit.libreoffice.org/11147 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'sc/inc/brdcst.hxx')
-rw-r--r--sc/inc/brdcst.hxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/sc/inc/brdcst.hxx b/sc/inc/brdcst.hxx
index d63bb2c6b169..a11ebbd4e5d4 100644
--- a/sc/inc/brdcst.hxx
+++ b/sc/inc/brdcst.hxx
@@ -22,7 +22,6 @@
#include "global.hxx"
#include "address.hxx"
#include "simplehintids.hxx"
-#include <tools/rtti.hxx>
#include <svl/hint.hxx>
class SvtBroadcaster;
@@ -32,7 +31,6 @@ class ScHint : public SfxSimpleHint
ScAddress aAddress;
public:
- TYPEINFO_OVERRIDE();
ScHint( sal_uLong n, const ScAddress& a );
const ScAddress& GetAddress() const { return aAddress; }
ScAddress& GetAddress() { return aAddress; }
@@ -44,7 +42,6 @@ class ScAreaChangedHint : public SfxHint
private:
ScRange aNewRange;
public:
- TYPEINFO_OVERRIDE();
ScAreaChangedHint(const ScRange& rRange) : aNewRange(rRange) {}
const ScRange& GetRange() const { return aNewRange; }
};