cid#1640468 Dereference after null check
[LibreOffice.git] / sc / source / ui / inc / undoutil.hxx
blob59887e570546627461e854253e92ccafc8c12ee3
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #pragma once
22 #include <address.hxx>
24 class ScDocShell;
25 class ScDBData;
26 class ScDocument;
28 class ScUndoUtil
30 public:
31 /** Mark Block (invisible - has to be repainted) */
32 static void MarkSimpleBlock( const ScDocShell* pDocShell,
33 SCCOL nStartX, SCROW nStartY, SCTAB nStartZ,
34 SCCOL nEndX, SCROW nEndY, SCTAB nEndZ );
35 static void MarkSimpleBlock( const ScDocShell* pDocShell,
36 const ScAddress& rBlockStart,
37 const ScAddress& rBlockEnd );
38 static void MarkSimpleBlock( const ScDocShell* pDocShell,
39 const ScRange& rRange );
41 static void PaintMore( ScDocShell* pDocShell,
42 const ScRange& rRange );
44 /** Search for Data base range in Document ("untitled" or by region)
45 create new if not found */
46 static ScDBData* GetOldDBData( const ScDBData* pUndoData, ScDocument* pDoc, SCTAB nTab,
47 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 );
50 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */