fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / ui / inc / cliputil.hxx
blob442dc46f3fcf9db1d9ea3434e40ec4a508e45a4b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef INCLUDED_SC_SOURCE_UI_INC_CLIPUTIL_HXX
11 #define INCLUDED_SC_SOURCE_UI_INC_CLIPUTIL_HXX
13 #include "address.hxx"
15 class ScViewData;
16 class ScTabViewShell;
17 class ScDocument;
18 class ScMarkData;
19 class ScRangeList;
21 namespace ScClipUtil
23 void PasteFromClipboard( ScViewData* pViewData, ScTabViewShell* pTabViewShell, bool bShowDialog );
25 bool CheckDestRanges(
26 ScDocument* pDoc, SCCOL nSrcCols, SCROW nSrcRows, const ScMarkData& rMark,
27 const ScRangeList& rDest);
30 #endif
32 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */