summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/filter/inc/fkttab.h39
-rw-r--r--sc/source/filter/inc/funktion.h43
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: */