summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-27 20:48:29 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-29 18:30:00 +0200
commit4a7dcee7456495b03382aff7b04afa4ddfc74444 (patch)
treeaecc5ec845487f026408601c5ed59542c2aee891 /tools/source
parent0acd47f68e3efb46dafd866ee95497da818fa34f (diff)
Clean up tools/link.hxx
Change-Id: I44e4abb228394f99109f7d7e005cfeb26e4b95c1
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/generic/link.cxx40
1 files changed, 0 insertions, 40 deletions
diff --git a/tools/source/generic/link.cxx b/tools/source/generic/link.cxx
deleted file mode 100644
index b1726104cf44..000000000000
--- a/tools/source/generic/link.cxx
+++ /dev/null
@@ -1,40 +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 .
- */
-
-#include <tools/link.hxx>
-
-bool Link::operator==( const Link& rLink ) const
-{
- if ( pFunc == rLink.pFunc )
- {
- if ( pFunc )
- {
- if ( pInst == rLink.pInst )
- return true;
- else
- return false;
- }
- else
- return true;
- }
- else
- return false;
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */