Kaydet (Commit) c5f27133 authored tarafından Andre Fischer's avatar Andre Fischer Kaydeden (comit) Michael Meeks

Related: #i122047# Added missing implementation of virtual destructors

(cherry picked from commit 107eb083)

Change-Id: Icc57d8910a390e9b608b5aa4a0fa6d8c8659208d
üst 893dd199
...@@ -66,7 +66,7 @@ void AsynchronousCall::CancelRequest (void) ...@@ -66,7 +66,7 @@ void AsynchronousCall::CancelRequest (void)
if (mnCallId != 0) if (mnCallId != 0)
{ {
Application::RemoveUserEvent(mnCallId); Application::RemoveUserEvent(mnCallId);
mnCallId = -1; mnCallId = 0;
} }
} }
......
/*
* 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sfx2/sidebar/IContextChangeReceiver.hxx>
namespace sfx2 { namespace sidebar {
IContextChangeReceiver::~IContextChangeReceiver (void)
{
}
} } // end of namespace ::sd::sidebar
/*
* 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sfx2/sidebar/ILayoutableWindow.hxx>
namespace sfx2 { namespace sidebar {
ILayoutableWindow::~ILayoutableWindow (void)
{
}
} } // end of namespace ::sd::sidebar
...@@ -240,12 +240,4 @@ ui::LayoutSize SAL_CALL SidebarPanelBase::getHeightForWidth (const sal_Int32 nWi ...@@ -240,12 +240,4 @@ ui::LayoutSize SAL_CALL SidebarPanelBase::getHeightForWidth (const sal_Int32 nWi
return ui::LayoutSize(0,0,0); return ui::LayoutSize(0,0,0);
} }
IContextChangeReceiver::~IContextChangeReceiver()
{
}
ILayoutableWindow::~ILayoutableWindow()
{
}
} } // end of namespace sfx2::sidebar } } // end of namespace sfx2::sidebar
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment