summaryrefslogtreecommitdiff
path: root/extensions/source/nsplugin/source/nsp_windows.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/nsplugin/source/nsp_windows.cxx')
-rw-r--r--extensions/source/nsplugin/source/nsp_windows.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/extensions/source/nsplugin/source/nsp_windows.cxx b/extensions/source/nsplugin/source/nsp_windows.cxx
index fe9060d134b1..85cabfbb278c 100644
--- a/extensions/source/nsplugin/source/nsp_windows.cxx
+++ b/extensions/source/nsplugin/source/nsp_windows.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -39,28 +39,28 @@
int NSP_ResetWinStyl(long hParent)
{
int ret = 0;
-#ifdef WNT
+#ifdef WNT
LONG dOldStyl = GetWindowLong( (HWND)hParent, GWL_STYLE);
ret = dOldStyl;
-
+
if(ret != 0)
{
LONG dNewStyl = dOldStyl|WS_CLIPCHILDREN;
if(0 == SetWindowLong((HWND)hParent, GWL_STYLE, dNewStyl))
ret = 0;
}
-#endif
+#endif
return ret;
-
+
}
int NSP_RestoreWinStyl(long hParent, long dOldStyle)
{
int ret = 0;
-#ifdef WNT
+#ifdef WNT
ret = SetWindowLong((HWND)hParent, GWL_STYLE, dOldStyle);
-#endif
- return ret;
+#endif
+ return ret;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */