summaryrefslogtreecommitdiffstats
path: root/fpicker/source/win32/misc/WinImplHelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/win32/misc/WinImplHelper.cxx')
-rw-r--r--fpicker/source/win32/misc/WinImplHelper.cxx46
1 files changed, 0 insertions, 46 deletions
diff --git a/fpicker/source/win32/misc/WinImplHelper.cxx b/fpicker/source/win32/misc/WinImplHelper.cxx
index 28957e17eed5..84c51419d919 100644
--- a/fpicker/source/win32/misc/WinImplHelper.cxx
+++ b/fpicker/source/win32/misc/WinImplHelper.cxx
@@ -38,9 +38,6 @@ using ::com::sun::star::uno::Any;
using ::com::sun::star::uno::Sequence;
-
-
-
const OUString TILDE( "~" );
const sal_Unicode TILDE_SIGN = L'~';
const OUString AMPERSAND( "&" );
@@ -60,7 +57,6 @@ const sal_Unicode AMPERSAND_SIGN = L'&';
// Windows ME VER_PLATFORM_WIN32_WINDOWS 4 90
-
// determine if we are running under Vista or newer OS
@@ -88,9 +84,6 @@ bool SAL_CALL IsWindowsVistaOrNewer()
}
-
-
-
void SAL_CALL ListboxAddString( HWND hwnd, const OUString& aString )
{
LRESULT rc = SendMessageW(
@@ -100,9 +93,6 @@ void SAL_CALL ListboxAddString( HWND hwnd, const OUString& aString )
}
-
-
-
OUString SAL_CALL ListboxGetString( HWND hwnd, sal_Int32 aPosition )
{
OSL_ASSERT( IsWindow( hwnd ) );
@@ -135,9 +125,6 @@ OUString SAL_CALL ListboxGetString( HWND hwnd, sal_Int32 aPosition )
}
-
-
-
void SAL_CALL ListboxAddItem( HWND hwnd, const Any& aItem, const Reference< XInterface >& rXInterface, sal_Int16 aArgPos )
throw( IllegalArgumentException )
{
@@ -157,9 +144,6 @@ void SAL_CALL ListboxAddItem( HWND hwnd, const Any& aItem, const Reference< XInt
}
-
-
-
void SAL_CALL ListboxAddItems( HWND hwnd, const Any& aItemList, const Reference< XInterface >& rXInterface, sal_Int16 aArgPos )
throw( IllegalArgumentException )
{
@@ -183,9 +167,6 @@ void SAL_CALL ListboxAddItems( HWND hwnd, const Any& aItemList, const Reference<
}
-
-
-
void SAL_CALL ListboxDeleteItem( HWND hwnd, const Any& aPosition, const Reference< XInterface >& rXInterface, sal_Int16 aArgPos )
throw( IllegalArgumentException )
{
@@ -215,9 +196,6 @@ void SAL_CALL ListboxDeleteItem( HWND hwnd, const Any& aPosition, const Referenc
}
-
-
-
void SAL_CALL ListboxDeleteItems( HWND hwnd, const Any&, const Reference< XInterface >&, sal_Int16 )
throw( IllegalArgumentException )
{
@@ -235,9 +213,6 @@ void SAL_CALL ListboxDeleteItems( HWND hwnd, const Any&, const Reference< XInter
}
-
-
-
void SAL_CALL ListboxSetSelectedItem( HWND hwnd, const Any& aPosition, const Reference< XInterface >& rXInterface, sal_Int16 aArgPos )
throw( IllegalArgumentException )
{
@@ -271,9 +246,6 @@ void SAL_CALL ListboxSetSelectedItem( HWND hwnd, const Any& aPosition, const Ref
}
-
-
-
Any SAL_CALL ListboxGetItems( HWND hwnd )
{
OSL_ASSERT( IsWindow( hwnd ) );
@@ -299,9 +271,6 @@ Any SAL_CALL ListboxGetItems( HWND hwnd )
}
-
-
-
Any SAL_CALL ListboxGetSelectedItem( HWND hwnd )
{
OSL_ASSERT( IsWindow( hwnd ) );
@@ -315,9 +284,6 @@ Any SAL_CALL ListboxGetSelectedItem( HWND hwnd )
}
-
-
-
Any SAL_CALL ListboxGetSelectedItemIndex( HWND hwnd )
{
OSL_ASSERT( IsWindow( hwnd ) );
@@ -331,9 +297,6 @@ Any SAL_CALL ListboxGetSelectedItemIndex( HWND hwnd )
}
-
-
-
Any SAL_CALL CheckboxGetState( HWND hwnd )
{
OSL_ASSERT( IsWindow( hwnd ) );
@@ -346,9 +309,6 @@ Any SAL_CALL CheckboxGetState( HWND hwnd )
}
-
-
-
void SAL_CALL CheckboxSetState(
HWND hwnd, const css::uno::Any& aState, const Reference< XInterface >& rXInterface, sal_Int16 aArgPos )
throw( IllegalArgumentException )
@@ -368,9 +328,6 @@ void SAL_CALL CheckboxSetState(
}
-
-
-
sal_uInt32 SAL_CALL _wcslenex( const sal_Unicode* pStr )
{
if ( !pStr )
@@ -388,9 +345,6 @@ sal_uInt32 SAL_CALL _wcslenex( const sal_Unicode* pStr )
}
-
-
-
void Replace( const OUString& aLabel, sal_Unicode OldChar, sal_Unicode NewChar, OUStringBuffer& aBuffer )
{
OSL_ASSERT( aLabel.getLength( ) );