summaryrefslogtreecommitdiff
path: root/sfx2/source/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-01-20 13:28:42 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-01-22 13:25:30 +0000
commitbddbc496942948f94f4c9665ac6eea4b1b28da61 (patch)
tree7b11856f88ab4d34161798a286f8bab5cad93631 /sfx2/source/inc
parent78bef23cc49a3a328f9e9ef38f7c0d0cd05f2ef8 (diff)
AsyncFunc header is dead
since commit 688489959e69994d455f36f3e9bb4c0ba3ee87aa Author: Caolán McNamara <caolanm@redhat.com> Date: Tue Nov 2 14:25:24 2021 +0000 Revert "tdf#117895: "Edit document properties before saving"..." Change-Id: I65239b4d9ca96075701121edc32d07c91631c629 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145966 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/inc')
-rw-r--r--sfx2/source/inc/asyncfunc.hxx36
1 files changed, 0 insertions, 36 deletions
diff --git a/sfx2/source/inc/asyncfunc.hxx b/sfx2/source/inc/asyncfunc.hxx
deleted file mode 100644
index 708750baaf3b..000000000000
--- a/sfx2/source/inc/asyncfunc.hxx
+++ /dev/null
@@ -1,36 +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_ASYNCFUNC_HXX
-#define INCLUDED_SFX2_ASYNCFUNC_HXX
-
-#include <functional>
-
-#include <com/sun/star/lang/XUnoTunnel.hpp>
-#include <comphelper/servicehelper.hxx>
-#include <cppuhelper/implbase.hxx>
-
-class AsyncFunc final : public cppu::WeakImplHelper<css::lang::XUnoTunnel>
-{
-private:
- std::function<void()> m_pAsyncFunc;
-
-public:
- AsyncFunc(const std::function<void()>&);
- virtual ~AsyncFunc() override;
-
- void Execute();
-
- //XUnoTunnel
- UNO3_GETIMPLEMENTATION_DECL(AsyncFunc)
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */