[Libreoffice-commits] .: Branch 'libreoffice-3-6' - shell/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Sep 19 02:59:45 PDT 2012


 shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 1986b6b697b7936449067662b808b380a54addf4
Author: Michael Stahl <mstahl at redhat.com>
Date:   Thu Jul 12 22:50:51 2012 +0200

    warning C4100: unreferenced formal parameter
    
    Change-Id: I0965bb0cf13becd8a55170789f81714919cbbdf2
    (cherry picked from commit 9e20e9a7b88d64c521c55bde8b4e5f10578d6ccf)
    
    Signed-off-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx b/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx
index c9ea9b3..21a2513 100644
--- a/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx
+++ b/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx
@@ -186,7 +186,8 @@ HRESULT STDMETHODCALLTYPE CPropertyHdl::GetValue( REFPROPERTYKEY key, PROPVARIAN
 }
 
 //-----------------------------
-HRESULT STDMETHODCALLTYPE CPropertyHdl::SetValue( REFPROPERTYKEY key, REFPROPVARIANT propVar )
+HRESULT STDMETHODCALLTYPE
+CPropertyHdl::SetValue(REFPROPERTYKEY /*key*/, REFPROPVARIANT /*propVar*/)
 {
     HRESULT hr = E_UNEXPECTED;
     if ( m_pCache )
@@ -205,7 +206,8 @@ HRESULT STDMETHODCALLTYPE CPropertyHdl::Commit()
 //-----------------------------
 // IPropertyStore
 //-----------------------------
-HRESULT STDMETHODCALLTYPE CPropertyHdl::IsPropertyWritable( REFPROPERTYKEY key )
+HRESULT STDMETHODCALLTYPE
+CPropertyHdl::IsPropertyWritable(REFPROPERTYKEY /*key*/)
 {
     // We start with read only properties only
     return S_FALSE;


More information about the Libreoffice-commits mailing list