This should work on SuSE and Mandrake icon themes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25815 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1204,39 +1204,39 @@ void wxMimeTypesManagerImpl::GetKDEMimeInfo(const wxString& sExtraDir)
|
|||||||
}
|
}
|
||||||
|
|
||||||
configFile.SetName( wxEmptyString );
|
configFile.SetName( wxEmptyString );
|
||||||
|
configFile.AppendDir( wxT("32x32") );
|
||||||
|
configFile.AppendDir( wxT("mimetypes") );
|
||||||
|
|
||||||
// Just try a few likely icons theme names
|
// Just try a few likely icons theme names
|
||||||
|
|
||||||
|
int pos = configFile.GetDirCount()-3;
|
||||||
|
|
||||||
if (!wxDir::Exists(configFile.GetPath()))
|
if (!wxDir::Exists(configFile.GetPath()))
|
||||||
{
|
{
|
||||||
configFile.RemoveDir( configFile.GetDirCount()-1 );
|
configFile.RemoveDir( pos );
|
||||||
configFile.AppendDir( wxT("default.kde") );
|
configFile.InsertDir( pos, wxT("default.kde") );
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wxDir::Exists(configFile.GetPath()))
|
if (!wxDir::Exists(configFile.GetPath()))
|
||||||
{
|
{
|
||||||
configFile.RemoveDir( configFile.GetDirCount()-1 );
|
configFile.RemoveDir( pos );
|
||||||
configFile.AppendDir( wxT("default") );
|
configFile.InsertDir( pos, wxT("default") );
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wxDir::Exists(configFile.GetPath()))
|
if (!wxDir::Exists(configFile.GetPath()))
|
||||||
{
|
{
|
||||||
configFile.RemoveDir( configFile.GetDirCount()-1 );
|
configFile.RemoveDir( pos );
|
||||||
configFile.AppendDir( wxT("crystalsvg") );
|
configFile.InsertDir( pos, wxT("crystalsvg") );
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wxDir::Exists(configFile.GetPath()))
|
if (!wxDir::Exists(configFile.GetPath()))
|
||||||
{
|
{
|
||||||
configFile.RemoveDir( configFile.GetDirCount()-1 );
|
configFile.RemoveDir( pos );
|
||||||
configFile.AppendDir( wxT("crystal") );
|
configFile.InsertDir( pos, wxT("crystal") );
|
||||||
}
|
}
|
||||||
|
|
||||||
if (wxDir::Exists(configFile.GetPath()))
|
if (wxDir::Exists(configFile.GetPath()))
|
||||||
{
|
|
||||||
configFile.AppendDir( wxT("32x32") );
|
|
||||||
configFile.AppendDir( wxT("mimetypes") );
|
|
||||||
icondirs.Add( configFile.GetFullPath() );
|
icondirs.Add( configFile.GetFullPath() );
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// settings in ~/.kde have maximal priority
|
// settings in ~/.kde have maximal priority
|
||||||
|
Reference in New Issue
Block a user