1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/*
Copyright (c) 2015 Friedrich W. H. Kossebau <kossebau@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef SHEETS_DEBUG_H
#define SHEETS_DEBUG_H
#include <QDebug>
#include <QLoggingCategory>
#include "sheets_odf_export.h"
extern const CALLIGRA_SHEETS_ODF_EXPORT QLoggingCategory &SHEETS_LOG(); // 36001
#define debugSheets qCDebug(SHEETS_LOG)
#define warnSheets qCWarning(SHEETS_LOG)
#define errorSheets qCCritical(SHEETS_LOG)
extern const CALLIGRA_SHEETS_ODF_EXPORT QLoggingCategory &SHEETSFORMULA_LOG(); // 36002
#define debugSheetsFormula qCDebug(SHEETSFORMULA_LOG)
#define warnSheetsFormula qCWarning(SHEETSFORMULA_LOG)
#define errorSheetsFormula qCCritical(SHEETSFORMULA_LOG)
extern const CALLIGRA_SHEETS_ODF_EXPORT QLoggingCategory &SHEETSODF_LOG(); // 36003
#define debugSheetsODF qCDebug(SHEETSODF_LOG)
#define warnSheetsODF qCWarning(SHEETSODF_LOG)
#define errorSheetsODF qCCritical(SHEETSODF_LOG)
extern const CALLIGRA_SHEETS_ODF_EXPORT QLoggingCategory &SHEETSRENDER_LOG(); // 36004
#define debugSheetsRender qCDebug(SHEETSRENDER_LOG)
#define warnSheetsRender qCWarning(SHEETSRENDER_LOG)
#define errorSheetsRender qCCritical(SHEETSRENDER_LOG)
extern const CALLIGRA_SHEETS_ODF_EXPORT QLoggingCategory &SHEETSUI_LOG(); // 36005
#define debugSheetsUI qCDebug(SHEETSUI_LOG)
#define warnSheetsUI qCWarning(SHEETSUI_LOG)
#define errorSheetsUI qCCritical(SHEETSUI_LOG)
extern const CALLIGRA_SHEETS_ODF_EXPORT QLoggingCategory &SHEETSSTYLE_LOG(); // 36006
#define debugSheetsStyle qCDebug(SHEETSSTYLE_LOG)
#define warnSheetsStyle qCWarning(SHEETSSTYLE_LOG)
#define errorSheetsStyle qCCritical(SHEETSSTYLE_LOG)
extern const CALLIGRA_SHEETS_ODF_EXPORT QLoggingCategory &SHEETSDAMAGE_LOG(); // 36007
#define debugSheetsDamage qCDebug(SHEETSDAMAGE_LOG)
#define warnSheetsDamage qCWarning(SHEETSDAMAGE_LOG)
#define errorSheetsDamage qCCritical(SHEETSDAMAGE_LOG)
#endif
|