summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-04-12 19:50:13 +0300
committerTor Lillqvist <tml@iki.fi>2013-04-12 19:55:36 +0300
commitd8dbe5844b192f1339a3d38e0f477c5330c89194 (patch)
tree6a08b33d333c1cd995f33c14392478d216cbfa05 /tools
parentdb8786e34b1a451f0e6969681079f701627de6f9 (diff)
Kill empty ImpDeInitWinTools() and the header with only its definition
Change-Id: Ica82a4612da952c0c084974b708ef9dac753dcf6
Diffstat (limited to 'tools')
-rw-r--r--tools/Library_tl.mk5
-rw-r--r--tools/source/generic/toolsin.cxx8
-rw-r--r--tools/win/inc/dll.hxx28
3 files changed, 0 insertions, 41 deletions
diff --git a/tools/Library_tl.mk b/tools/Library_tl.mk
index 0a160632c9e7..9ea13e7e290e 100644
--- a/tools/Library_tl.mk
+++ b/tools/Library_tl.mk
@@ -99,11 +99,6 @@ $(eval $(call gb_Library_use_externals,tl,\
ifeq ($(OS),WNT)
-$(eval $(call gb_Library_set_include,tl,\
- -I$(SRCDIR)/tools/win/inc \
- $$(INCLUDE) \
-))
-
$(eval $(call gb_Library_use_system_win32_libs,tl,\
mpr \
ole32 \
diff --git a/tools/source/generic/toolsin.cxx b/tools/source/generic/toolsin.cxx
index 24ce7932e272..eb549d8ea5de 100644
--- a/tools/source/generic/toolsin.cxx
+++ b/tools/source/generic/toolsin.cxx
@@ -21,10 +21,6 @@
#include <string.h>
#include <tools/debug.hxx>
-#if defined WNT
-#include <dll.hxx>
-#endif
-
void InitTools()
{
DBG_DEBUGSTART();
@@ -38,10 +34,6 @@ void DeInitTools()
void GlobalDeInitTools()
{
DBG_GLOBALDEBUGEND();
-
-#if defined WNT
- ImpDeInitWinTools();
-#endif
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/tools/win/inc/dll.hxx b/tools/win/inc/dll.hxx
deleted file mode 100644
index 61e2bde61d1a..000000000000
--- a/tools/win/inc/dll.hxx
+++ /dev/null
@@ -1,28 +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 _DLL_HXX
-#define _DLL_HXX
-
-// Um Resourcen wieder freizugeben
-inline void ImpDeInitWinTools() {}
-
-#endif /* _DLL_HXX */
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */