Coverage Report

Created: 2025-12-31 10:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/sc/inc/dragdata.hxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
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
 */
9
10
#pragma once
11
12
#include <rtl/ustring.hxx>
13
14
class ScTransferObj;
15
class ScDrawTransferObj;
16
class ScDocument;
17
18
struct ScDragData
19
{
20
    ScTransferObj*      pCellTransfer;
21
    ScDrawTransferObj*  pDrawTransfer;
22
    ScDocument*         pJumpLocalDoc;
23
24
    OUString       aLinkDoc;
25
    OUString       aLinkTable;
26
    OUString       aLinkArea;
27
    OUString       aJumpTarget;
28
    OUString       aJumpText;
29
30
    ScDragData() :
31
11
        pCellTransfer(nullptr),
32
11
        pDrawTransfer(nullptr),
33
11
        pJumpLocalDoc(nullptr)
34
11
    {
35
11
    }
36
};
37
38
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */