Kaydet (Commit) 90bf2d80 authored tarafından Chris Sherlock's avatar Chris Sherlock

sdext: change instances of maName to more descriptive names

Change-Id: If1cb55737240ba1e35e18790894d421aae660026
Reviewed-on: https://gerrit.libreoffice.org/20960Reviewed-by: 's avatarChris Sherlock <chris.sherlock79@gmail.com>
Tested-by: 's avatarChris Sherlock <chris.sherlock79@gmail.com>
üst 1d4c0528
...@@ -97,7 +97,7 @@ FileOpenDialog::FileOpenDialog( const Reference< XComponentContext >& rxContext ...@@ -97,7 +97,7 @@ FileOpenDialog::FileOpenDialog( const Reference< XComponentContext >& rxContext
j = aFilterProperties.getLength(); j = aFilterProperties.getLength();
} }
break; break;
case TK_Name : rProperty.Value >>= aFilterEntry.maName; break; case TK_Name : rProperty.Value >>= aFilterEntry.maFilterEntryName; break;
case TK_UIName : rProperty.Value >>= aFilterEntry.maUIName; break; case TK_UIName : rProperty.Value >>= aFilterEntry.maUIName; break;
case TK_Type : rProperty.Value >>= aFilterEntry.maType; break; case TK_Type : rProperty.Value >>= aFilterEntry.maType; break;
case TK_Flags : rProperty.Value >>= aFilterEntry.maFlags; break; case TK_Flags : rProperty.Value >>= aFilterEntry.maFlags; break;
...@@ -177,7 +177,7 @@ OUString FileOpenDialog::getFilterName() const ...@@ -177,7 +177,7 @@ OUString FileOpenDialog::getFilterName() const
{ {
if ( aIter->maUIName == aUIName ) if ( aIter->maUIName == aUIName )
{ {
aFilterName = aIter->maName; aFilterName = aIter->maFilterEntryName;
break; break;
} }
} }
......
...@@ -32,7 +32,7 @@ class FileOpenDialog ...@@ -32,7 +32,7 @@ class FileOpenDialog
// a list of filters that are provided within the SaveDialog // a list of filters that are provided within the SaveDialog
struct FilterEntry struct FilterEntry
{ {
OUString maName; OUString maFilterEntryName;
OUString maType; OUString maType;
OUString maUIName; OUString maUIName;
sal_Int32 maFlags; sal_Int32 maFlags;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment