diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 19:07:24 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 19:07:24 +0000 |
commit | d0858601f652ea86cff513f653c758d62f95182a (patch) | |
tree | fd7c2d1b7e650f463f6b6f9aed17d09f960405bd /svtools | |
parent | c0a4d1bc981242ad0a926d81833b87ff8a16fae5 (diff) |
INTEGRATION: CWS warnings01 (1.11.62); FILE MERGED
2005/11/14 14:41:47 pl 1.11.62.1: #i55991# removed warnings
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/bmpmaker/bmpgui.cxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/svtools/bmpmaker/bmpgui.cxx b/svtools/bmpmaker/bmpgui.cxx index b6010b83e931..4d20d2b9f094 100644 --- a/svtools/bmpmaker/bmpgui.cxx +++ b/svtools/bmpmaker/bmpgui.cxx @@ -4,9 +4,9 @@ * * $RCSfile: bmpgui.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: rt $ $Date: 2005-09-08 08:54:10 $ + * last change: $Author: hr $ $Date: 2006-06-19 20:07:24 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -206,7 +206,7 @@ Pathes::Pathes( Window* pParent, // ----------------------------------------------------------------------------- -IMPL_LINK( Pathes, ClickSrsHdl, void*, p ) +IMPL_LINK( Pathes, ClickSrsHdl, void*, EMPTYARG ) { FileDialog aFileDlg( this, WB_OPEN | WB_3DLOOK ); DirEntry aPath( aEdtSrs.GetText() ); @@ -222,7 +222,7 @@ IMPL_LINK( Pathes, ClickSrsHdl, void*, p ) // ----------------------------------------------------------------------------- -IMPL_LINK( Pathes, ClickResHdl, void*, p ) +IMPL_LINK( Pathes, ClickResHdl, void*, EMPTYARG ) { PathDialog aPathDlg( this, WB_OPEN | WB_3DLOOK ); @@ -235,7 +235,7 @@ IMPL_LINK( Pathes, ClickResHdl, void*, p ) // ----------------------------------------------------------------------------- -IMPL_LINK( Pathes, ClickOutHdl, void*, p ) +IMPL_LINK( Pathes, ClickOutHdl, void*, EMPTYARG ) { PathDialog aPathDlg( this, WB_OPEN | WB_3DLOOK ); @@ -424,6 +424,8 @@ BOOL SVMain(); SAL_IMPLEMENT_MAIN() { + (void)argc; // avoid warning + (void)argv; // avoid warning SVMain(); return 0; } |