diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-19 13:45:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-19 13:45:35 +0100 |
commit | a34a251ca4e4feeb31a96a88e3ac0add3cc22866 (patch) | |
tree | 298e138e113ea809508f829fd9197c3f672d529f | |
parent | eb98ae7c9b8973b87a58a4a4820cde12c42ada82 (diff) |
loplugin:redundantcast (after loplugin:cstylecast, macOS)
Change-Id: I349eb6c3c2408729799d35316ab75bb05920021f
-rw-r--r-- | fpicker/source/aqua/SalAquaPicker.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/aqua/SalAquaPicker.mm b/fpicker/source/aqua/SalAquaPicker.mm index 0809842cb23e..cb83b21f6b89 100644 --- a/fpicker/source/aqua/SalAquaPicker.mm +++ b/fpicker/source/aqua/SalAquaPicker.mm @@ -83,7 +83,7 @@ void SalAquaPicker::implInitialize() case NAVIGATIONSERVICES_SAVE: m_pDialog = [NSSavePanel savePanel]; - [(NSSavePanel*)m_pDialog setCanSelectHiddenExtension:NO]; //changed for issue #102102 + [m_pDialog setCanSelectHiddenExtension:NO]; //changed for issue #102102 /* I would have loved to use * [(NSSavePanel*)m_pDialog setExtensionHidden:YES]; * here but unfortunately this |