diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-25 10:12:55 +0000 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2014-12-09 12:35:07 +0000 |
commit | c9cc78bb283b8744d9f1e629fa95aa87b94adf81 (patch) | |
tree | 163f5b5dea969031bbb4a604eb29406642beb61a /sc | |
parent | f43162b09c4876cec317b83e2d6c1afbd8576001 (diff) |
We now only need one bit of information here
whether there *is* an id, or whether there is not an id. An id of 0 seems to
be used as a flag that an interface is some sort of superclass which can be
subclassed by something else and have its toolbars etc reused.
Convert this to a bool so we don't need an a resource id for each one and just
drop the third arg for the normal "final" case and use a different define for
the inheritable case
Change-Id: I98380f03d73d57bf8cba02d339097e384518abaa
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/app/scmod.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx index 80a7de377eab..09cca3b27130 100644 --- a/sc/source/ui/app/scmod.cxx +++ b/sc/source/ui/app/scmod.cxx @@ -112,7 +112,7 @@ #include "formulagroup.hxx" #include <documentlinkmgr.hxx> -SFX_IMPL_INTERFACE(ScModule, SfxShell, ScResId(RID_APPTITLE)) +SFX_IMPL_INTERFACE(ScModule, SfxShell) void ScModule::InitInterface_Impl() { |