diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-06-26 19:26:56 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-06-27 13:34:31 +0200 |
commit | 8f30e0ae6a8adc5a0973067fedebf878e52ac124 (patch) | |
tree | 81d89fb8b9a834d1b517773951ea5a386c34f15d /sc | |
parent | 3ed25cd90ec3ef3d9f2d278e8dbff3a29ce06606 (diff) |
Remove unused header files
Change-Id: I3d172e5200fee63c6afcdf236a7915b7d51baf9c
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/inc/fkttab.h | 39 | ||||
-rw-r--r-- | sc/source/filter/inc/funktion.h | 43 |
2 files changed, 0 insertions, 82 deletions
diff --git a/sc/source/filter/inc/fkttab.h b/sc/source/filter/inc/fkttab.h deleted file mode 100644 index 697e508a1acc..000000000000 --- a/sc/source/filter/inc/fkttab.h +++ /dev/null @@ -1,39 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * 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 . - */ - -#ifndef SC_FKTTAB_H -#define SC_FKTTAB_H - -#include "decl.h" - -// Prefixes der Operationen -extern const sal_Char *cPre[ 256 ]; - -// Infixes der Operationen -extern const sal_Char *cInf[ 256 ]; - -// Postfixes der Operationen -extern const sal_Char *cPost[ 256 ]; - -// Bearbeitungsfunktion sal_Char *X( sal_Char * ) -extern BEARBFKT *pFkt[ 256 ]; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/source/filter/inc/funktion.h b/sc/source/filter/inc/funktion.h deleted file mode 100644 index 8bbc27ae10ae..000000000000 --- a/sc/source/filter/inc/funktion.h +++ /dev/null @@ -1,43 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * 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 . - */ - -#ifndef SC_FUNKTION_H -#define SC_FUNKTION_H - -// Bearbeitungsfunktionen -void P0( void ); // 0 Parameter -void P1( void ); // 1 Parameter -void P2( void ); // 2 Parameter -void P3( void ); // 3 Parameter -void P4( void ); // 4 Parameter -void P5( void ); // 5 Parameter -void Pn( void ); // n Parameter -void NI( void ); // nicht implementiert -void ConstFloat( void ); // 0 -void Variable( void ); // 1 -void LotusRange( void ); // 2 -void FormulaReturn( void ); // 3 -void Klammer( void ); // 4 -void ConstInt( void ); // 5 -void ConstString( void ); // 6 -// ACHTUNG: unbekannte Funktionen -> P0() - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |