summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-10-07 12:17:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-10-07 12:17:04 +0200
commit373ab83193ee5e0e870cd2fecb5b789a95613bdd (patch)
tree874e77745c70005753ca469f9c136f35ed950845
parent3ee3b36ae0c064fb5c81268d8d63444309d1b970 (diff)
Remove unused include file
Change-Id: Id1a1dcc1d8d06e6a90861976cbb5616ec65ff234
-rw-r--r--svl/unx/inc/convert.hxx45
1 files changed, 0 insertions, 45 deletions
diff --git a/svl/unx/inc/convert.hxx b/svl/unx/inc/convert.hxx
deleted file mode 100644
index 49ed03c21062..000000000000
--- a/svl/unx/inc/convert.hxx
+++ /dev/null
@@ -1,45 +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_SVL_UNX_INC_CONVERT_HXX
-#define INCLUDED_SVL_UNX_INC_CONVERT_HXX
-
-class Convert
-{
-public:
- static void Swap( long & nValue )
- { nValue = OSL_SWAPDWORD( nValue ); }
- static void Swap( ULONG & nValue )
- { nValue = OSL_SWAPDWORD( nValue ); }
- static void Swap( short & nValue )
- { nValue = OSL_SWAPWORD( nValue ); }
- static void Swap( USHORT & nValue )
- { nValue = OSL_SWAPWORD( nValue ); }
- static void Swap( Point & aPtr )
- { Swap( aPtr.X() ); Swap( aPtr.Y() ); }
- static void Swap( Size & aSize )
- { Swap( aSize.Width() ); Swap( aSize.Height() ); }
- static void Swap( Rectangle & rRect )
- { Swap( rRect.Top() ); Swap( rRect.Bottom() );
- Swap( rRect.Left() ); Swap( rRect.Right() ); }
-};
-
-#endif // INCLUDED_SVL_UNX_INC_CONVERT_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */