summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2018-05-20 16:57:25 +0300
committerTor Lillqvist <tml@collabora.com>2018-05-21 10:18:34 +0200
commit5dab28cdada9a24ad2ddae1083ac977fe87cb1c1 (patch)
tree58ca683c9c81ab1122e5cbb52329da33c31733e6 /shell
parent83a4a6286f021c99cbf94897504fc7bfe35d2a68 (diff)
tdf#96099 Remove unused typedef from shell/source/tools/lngconvex
Also remove empty defs.hxx Change-Id: I35f70cc13f0198623d99cfd1e294808ac90f5f02 Reviewed-on: https://gerrit.libreoffice.org/54600 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/source/tools/lngconvex/cmdline.hxx4
-rw-r--r--shell/source/tools/lngconvex/defs.hxx32
2 files changed, 2 insertions, 34 deletions
diff --git a/shell/source/tools/lngconvex/cmdline.hxx b/shell/source/tools/lngconvex/cmdline.hxx
index 9cbc34e5e343..04cb7101aee0 100644
--- a/shell/source/tools/lngconvex/cmdline.hxx
+++ b/shell/source/tools/lngconvex/cmdline.hxx
@@ -20,12 +20,12 @@
#ifndef INCLUDED_SHELL_SOURCE_TOOLS_LNGCONVEX_CMDLINE_HXX
#define INCLUDED_SHELL_SOURCE_TOOLS_LNGCONVEX_CMDLINE_HXX
+#include <string>
+
#include <sal/config.h>
#include <sal/types.h>
-#include "defs.hxx"
-
/** Simple command line abstraction
*/
diff --git a/shell/source/tools/lngconvex/defs.hxx b/shell/source/tools/lngconvex/defs.hxx
deleted file mode 100644
index 86745877e66e..000000000000
--- a/shell/source/tools/lngconvex/defs.hxx
+++ /dev/null
@@ -1,32 +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 INCLUDED_SHELL_SOURCE_TOOLS_LNGCONVEX_DEFS_HXX
-#define INCLUDED_SHELL_SOURCE_TOOLS_LNGCONVEX_DEFS_HXX
-
-#include <vector>
-#include <string>
-#include <memory>
-
-typedef std::vector<std::string> StringList_t;
-
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */