mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Free m_global_rc_path
This commit is contained in:
parent
16453c6ac2
commit
766315cf85
1 changed files with 9 additions and 2 deletions
|
@ -527,9 +527,16 @@ void LoadTexdefPref( texdef_t* pTexdef, const char* pName );
|
||||||
|
|
||||||
PrefsDlg ();
|
PrefsDlg ();
|
||||||
virtual ~PrefsDlg (){
|
virtual ~PrefsDlg (){
|
||||||
|
if ( m_global_rc_path ) {
|
||||||
|
g_string_free( m_global_rc_path, true );
|
||||||
|
}
|
||||||
|
if ( m_rc_path ) {
|
||||||
g_string_free( m_rc_path, true );
|
g_string_free( m_rc_path, true );
|
||||||
|
}
|
||||||
|
if ( m_inipath ) {
|
||||||
g_string_free( m_inipath, true );
|
g_string_free( m_inipath, true );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
path for global settings
|
path for global settings
|
||||||
|
|
Loading…
Reference in a new issue