Обновление подмодулей

This commit is contained in:
2019-10-27 10:42:16 +03:00
parent 821bd88cee
commit 7dedc13075
5 changed files with 12 additions and 11 deletions

View File

@ -211,9 +211,9 @@ bool Paths::makeDefaultDirectories()
{
bool status = true;
if ( !m_dataDirectory.mkpath( m_dataDirectory.absolutePath() ) ) { status = false; }
if ( !m_dataDirectory.mkpath( m_dataDirectory.absolutePath() ) ) { status = false; }
if ( !m_configDirectory.mkpath( m_configDirectory.absolutePath() ) ) { status = false; }
if ( !m_cacheDirectory.mkpath( m_cacheDirectory.absolutePath() ) ) { status = false; }
if ( !m_cacheDirectory.mkpath( m_cacheDirectory.absolutePath() ) ) { status = false; }
return( status );
}

View File

@ -68,9 +68,7 @@ int getExecutablePath( char* out, int capacity, int* dirname_length )
if ( dirname_length )
{
int i;
for ( i = length - 1; i >= 0; --i )
for ( int i = length - 1; i >= 0; --i )
{
if ( out[i] == '/' )
{
@ -156,9 +154,7 @@ int getModulePath( char* out, int capacity, int* dirname_length )
if ( dirname_length )
{
int i;
for ( i = length - 1; i >= 0; --i )
for ( int i = length - 1; i >= 0; --i )
{
if ( out[i] == '/' )
{