[Libreoffice-commits] core.git: svl/unx

Stephan Bergmann sbergman at redhat.com
Fri Oct 7 10:19:34 UTC 2016


 svl/unx/inc/convert.hxx |   45 ---------------------------------------------
 1 file changed, 45 deletions(-)

New commits:
commit 373ab83193ee5e0e870cd2fecb5b789a95613bdd
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Fri Oct 7 12:17:04 2016 +0200

    Remove unused include file
    
    Change-Id: Id1a1dcc1d8d06e6a90861976cbb5616ec65ff234

diff --git a/svl/unx/inc/convert.hxx b/svl/unx/inc/convert.hxx
deleted file mode 100644
index 49ed03c..0000000
--- 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: */


More information about the Libreoffice-commits mailing list