diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-03-14 23:15:32 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-03-15 00:15:06 -0400 |
commit | 88955714d345d8584e86ae34bf5f5d1f3f4af9f7 (patch) | |
tree | 0ff18e33c5cf692327f5187331b47fecce53b2a0 /sc/inc/simplehintids.hxx | |
parent | 980898058f1411d234c009caaae58b29eb3420c8 (diff) |
fdo#71491: Adjust reference during undo of drag-n-drop of cell range.
Also with this commit, the signature of SvtListener::Notify() changes,
by dropping the first argument which nobody uses. This change was necessary
in order to call it directly without needing to pass any broadcaster instance.
Change-Id: I6a1e97f0fb1e070d1d8f7db614690b04c9e8024e
Diffstat (limited to 'sc/inc/simplehintids.hxx')
-rw-r--r-- | sc/inc/simplehintids.hxx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sc/inc/simplehintids.hxx b/sc/inc/simplehintids.hxx new file mode 100644 index 000000000000..ecf2f9357c2d --- /dev/null +++ b/sc/inc/simplehintids.hxx @@ -0,0 +1,22 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#ifndef SC_SIMPLEHINTIDS_HXX +#define SC_SIMPLEHINTIDS_HXX + +#include <svl/smplhint.hxx> + +#define SC_HINT_DATACHANGED SFX_HINT_DATACHANGED +#define SC_HINT_TABLEOPDIRTY SFX_HINT_USER00 +#define SC_HINT_CALCALL SFX_HINT_USER01 +#define SC_HINT_REFERENCE SFX_HINT_USER02 + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |