summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorMaxim Monastirsky <momonasmon@gmail.com>2015-11-08 01:33:47 +0200
committerMaxim Monastirsky <momonasmon@gmail.com>2015-11-08 10:47:10 +0200
commit8655fa318c1924994eb659b4bb60074c86ad70c1 (patch)
tree813b6f85636adabbc3a344f8126ab4ca9f1159d8 /svtools
parent6da681442b17c723f9408a806e8d2367441ad65a (diff)
Fix property name: ModuleName -> ModuleIdentifier
8b050d1e91a6623fb2770421e564a74d6259d816 changed this everywhere except here. (This reason is that the commit was imported from Apache, which didn't have this place.) Change-Id: I07a914298ee0d350c744789a5dd39605b01e5311
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/uno/popupmenucontrollerbase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/uno/popupmenucontrollerbase.cxx b/svtools/source/uno/popupmenucontrollerbase.cxx
index 06c33ffe5867..914ae1da651e 100644
--- a/svtools/source/uno/popupmenucontrollerbase.cxx
+++ b/svtools/source/uno/popupmenucontrollerbase.cxx
@@ -319,7 +319,7 @@ void SAL_CALL PopupMenuControllerBase::initialize( const Sequence< Any >& aArgum
aPropValue.Value >>= xFrame;
else if ( aPropValue.Name == "CommandURL" )
aPropValue.Value >>= aCommandURL;
- else if ( aPropValue.Name == "ModuleName" )
+ else if ( aPropValue.Name == "ModuleIdentifier" )
aPropValue.Value >>= m_aModuleName;
}
}