| 1860 | |
| 1861 | |
| 1862 | int SortVariantNames( const wxString& aLhs, const wxString& aRhs ) |
| 1863 | { |
| 1864 | if( ( aLhs == defaultVariantName ) && ( aRhs != defaultVariantName ) ) |
| 1865 | return -1; |
| 1866 | |
| 1867 | if( ( aLhs != defaultVariantName ) && ( aRhs == defaultVariantName ) ) |
| 1868 | return 1; |
| 1869 | |
| 1870 | return StrNumCmp( aLhs, aRhs ); |
| 1871 | } |
| 1872 | |
| 1873 | |
| 1874 | std::vector<LOAD_MESSAGE> ExtractLibraryLoadErrors( const wxString& aErrorString, int aSeverity ) |
nothing calls this directly
no test coverage detected