Determines if this plugin is androgynous. It is considered androgynous if the short UNC folder plugin is not shown according to settings. @return true to use androgynous description, false to use normal description.
| 101 | // @return true to use androgynous description, false to use normal description. |
| 102 | // |
| 103 | bool LongUNCFolderPlugin::IsAndrogynous() const |
| 104 | { |
| 105 | assert(m_pSettings != nullptr); |
| 106 | |
| 107 | return m_pSettings != nullptr && |
| 108 | m_pSettings->GetDropRedundantWords() && |
| 109 | !PluginUtils::IsPluginShown(*m_pSettings, ShortUNCFolderPlugin::ID); |
| 110 | } |
| 111 | |
| 112 | // |
| 113 | // Returns the long UNC path of the specified file's parent directory. |
nothing calls this directly
no test coverage detected