summaryrefslogtreecommitdiff
path: root/sfx2/inc
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2017-04-07 14:11:16 +0200
committerMichael Stahl <mstahl@redhat.com>2017-04-07 14:15:23 +0200
commitb805e5705cfaafd8e54283840bec23afc789124a (patch)
treeeb5d1b21310f062e3469ca6d832e7e59bc3fb8f2 /sfx2/inc
parentbe8b9b4d29abb951aea0ea195541143d256954dc (diff)
Revert "Related tdf#105566 Update Infobar when signature status changes"
This reverts commit d8faf3bf9a82e8f49340b5020ec4ee931cc2f3f4. This causes an infinite recursion in JunitTest_sfx2_complex involving the newly added SignatureHelper::updateInfoBarState().
Diffstat (limited to 'sfx2/inc')
-rw-r--r--sfx2/inc/view/signaturehelper.hxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/sfx2/inc/view/signaturehelper.hxx b/sfx2/inc/view/signaturehelper.hxx
deleted file mode 100644
index e8dc089ba876..000000000000
--- a/sfx2/inc/view/signaturehelper.hxx
+++ /dev/null
@@ -1,32 +0,0 @@
-/* -*- 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 INCLUDED_SFX2_SIGNATUREHELPER_HXX
-#define INCLUDED_SFX2_SIGNATUREHELPER_HXX
-
-#include <sfx2/signaturestate.hxx>
-
-class SfxViewFrame;
-
-class SignatureHelper
-{
-public:
- SignatureHelper(SfxViewFrame* rViewFrame);
- /**
- * Show the appropriate infobar according to the current signature status
- */
- void updateInfoBarState(SignatureState signatureState);
-private:
- SfxViewFrame* mrViewFrame;
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
-