summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2013-08-31 17:50:25 +0200
committerPhilipp Riemer <ruderphilipp@gmail.com>2013-08-31 22:41:10 +0200
commitbf42b6f9f51b4bc66e267ae24c87ac79122825cc (patch)
tree449f642fc53e3d654ae36a39877efc41a8b74fcc /cli_ure
parent3f84d81412f123bda0dde57c4e52abe9f49f58af (diff)
fdo#62475 - remove visual noise
This is a follow up commit to - 22d1beb78a475e4846af945afde1c4d6c263b5d6 - 1c7af455ab9345304a7ac48ce2e0310de2ac8a75 Change-Id: I102685391125f3b4f7bdf838f8bd17a2283d558d
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/uno_bridge/cli_data.cxx12
1 files changed, 2 insertions, 10 deletions
diff --git a/cli_ure/source/uno_bridge/cli_data.cxx b/cli_ure/source/uno_bridge/cli_data.cxx
index 1448fc13aa8b..6735908db22f 100644
--- a/cli_ure/source/uno_bridge/cli_data.cxx
+++ b/cli_ure/source/uno_bridge/cli_data.cxx
@@ -23,7 +23,6 @@
#include <memory>
-
#include "rtl/ustring.hxx"
#include "rtl/ustrbuf.hxx"
#include "uno/sequence2.h"
@@ -34,7 +33,6 @@
#using <cli_uretypes.dll>
-
#undef VOID
namespace sri = System::Runtime::InteropServices;
@@ -44,8 +42,6 @@ namespace ucss = unoidl::com::sun::star;
using namespace std;
-
-
namespace cli_uno
{
System::String^ mapUnoPolymorphicName(System::String^ unoName);
@@ -63,7 +59,6 @@ inline auto_ptr< rtl_mem > seq_allocate( sal_Int32 nElements, sal_Int32 nSize )
return seq;
}
-
System::Object^ Bridge::map_uno2cli(uno_Interface * pUnoI, typelib_InterfaceTypeDescription *pTD) const
{
System::Object^ retVal= nullptr;
@@ -187,7 +182,6 @@ System::Type^ loadCliType(System::String ^ unoName)
return retVal;
}
-
System::Type^ mapUnoType(typelib_TypeDescription const * pTD)
{
return mapUnoType(pTD->pWeakRef);
@@ -530,9 +524,6 @@ System::String^ mapUnoTypeName(rtl_uString const * typeName)
return buf->ToString();
}
-
-
-
/** For example, there is a uno type
com.sun.star.Foo<char, long>.
The values in the type list
@@ -544,6 +535,7 @@ inline System::String^ mapUnoPolymorphicName(System::String^ unoName)
{
return mapPolymorphicName(unoName, false);
}
+
/** For example, there is a type name such as
com.sun.star.Foo<System.Char, System.Int32>.
The values in the type list
@@ -714,6 +706,7 @@ OUString mapCliTypeName(System::String^ typeName)
}
return mapCliString(buf->ToString());
}
+
/** Maps uno types to dot net types.
* If uno_data is null then the type description is converted to System::Type
*/
@@ -1489,7 +1482,6 @@ void Bridge::map_to_uno(void * uno_data, System::Object^ cli_data,
OSL_ASSERT(0);
throw;
}
-
}
/**