diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-12 22:50:51 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-12 22:50:51 +0200 |
commit | 9e20e9a7b88d64c521c55bde8b4e5f10578d6ccf (patch) | |
tree | fd220faf811b991152d4af2c24e6af45e1d0e087 /shell/source | |
parent | d59024b652ccfaf7247da113ec36788fe260de74 (diff) |
warning C4100: unreferenced formal parameter
Change-Id: I0965bb0cf13becd8a55170789f81714919cbbdf2
Diffstat (limited to 'shell/source')
-rw-r--r-- | shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx b/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx index c9ea9b33f799..21a25132a773 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; |