diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:52:47 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:54:35 +0200 |
commit | f42b2268c4303cdad017294d870a255d95e617ee (patch) | |
tree | 2f82fba5c6ccd115e858726ef9629733039294fb | |
parent | d656138b12bd67777f18adc14bd6941136a4a7a1 (diff) |
loplugin:staticcall
Change-Id: Ida0a95c181a02b4fb0e0b40684a2279923338700
-rw-r--r-- | ucb/source/ucp/file/filid.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/file/filid.cxx b/ucb/source/ucp/file/filid.cxx index 8351810f40a7..07de9157185b 100644 --- a/ucb/source/ucp/file/filid.cxx +++ b/ucb/source/ucp/file/filid.cxx @@ -35,13 +35,13 @@ FileContentIdentifier::FileContentIdentifier( { m_pMyShell->getUrlFromUnq( aUnqPath,m_aContentId ); m_aNormalizedId = aUnqPath; - m_pMyShell->getScheme( m_aProviderScheme ); + shell::getScheme( m_aProviderScheme ); } else { m_pMyShell->getUnqFromUrl( aUnqPath,m_aNormalizedId ); m_aContentId = aUnqPath; - m_pMyShell->getScheme( m_aProviderScheme ); + shell::getScheme( m_aProviderScheme ); } } |