Fix spelling errors (#392)

This commit is contained in:
Dennis Braun
2020-07-29 21:10:43 +02:00
committed by GitHub
parent 77617e4109
commit bed864b1e7
9 changed files with 14 additions and 14 deletions

View File

@ -407,7 +407,7 @@ std::string read_config()
fclose(in);
return std::string(projectM_home);
}
else{printf("This shouldn't happen, using implementation defualts\n");abort();}
else{printf("This shouldn't happen, using implementation defaults\n");abort();}
}
else{printf("Cannot find projectM default config, using implementation defaults\n");abort();}
}
@ -418,7 +418,7 @@ std::string read_config()
{ printf("Successfully opened default config file\n");
fclose(in);
return std::string(projectM_config);}
else{ printf("Using implementation defaults, your system is really messed up, I'm suprised we even got this far\n"); abort();}
else{ printf("Using implementation defaults, your system is really messed up, I'm surprised we even got this far\n"); abort();}
}
}

View File

@ -89,7 +89,7 @@ std::string getConfigFilename()
return std::string(projectM_config);
}
printf("Using implementation defaults, your system is really messed up, I'm suprised we even got this far\n");
printf("Using implementation defaults, your system is really messed up, I'm surprised we even got this far\n");
abort();
}

View File

@ -129,7 +129,7 @@ std::string read_config()
fclose(in);
return std::string(projectM_home);
}
else{printf("This shouldn't happen, using implementation defualts\n");abort();}
else{printf("This shouldn't happen, using implementation defaults\n");abort();}
}
else{printf("Cannot find projectM default config, using implementation defaults\n");abort();}
}
@ -140,7 +140,7 @@ std::string read_config()
{ printf("Successfully opened default config file\n");
fclose(in);
return std::string(projectM_config);}
else{ printf("Using implementation defaults, your system is really messed up, I'm suprised we even got this far\n"); abort();}
else{ printf("Using implementation defaults, your system is really messed up, I'm surprised we even got this far\n"); abort();}
}

View File

@ -152,7 +152,7 @@ std::string read_config()
fclose(in);
return std::string(projectM_home);
}
else{printf("This shouldn't happen, using implementation defualts\n");abort();}
else{printf("This shouldn't happen, using implementation defaults\n");abort();}
}
else{printf("Cannot find projectM default config, using implementation defaults\n");abort();}
}
@ -163,7 +163,7 @@ std::string read_config()
{ printf("Successfully opened default config file\n");
fclose(in);
return std::string(projectM_config);}
else{ printf("Using implementation defaults, your system is really messed up, I'm suprised we even got this far\n"); abort();}
else{ printf("Using implementation defaults, your system is really messed up, I'm surprised we even got this far\n"); abort();}
}

View File

@ -301,7 +301,7 @@ std::string read_config()
fclose(in);
return std::string(projectM_home);
}
else{printf("This shouldn't happen, using implementation defualts\n");abort();}
else{printf("This shouldn't happen, using implementation defaults\n");abort();}
}
else{printf("Cannot find projectM default config, using implementation defaults\n");abort();}
}
@ -312,7 +312,7 @@ std::string read_config()
{ printf("Successfully opened default config file\n");
fclose(in);
return std::string(projectM_config);}
else{ printf("Using implementation defaults, your system is really messed up, I'm suprised we even got this far\n"); abort();}
else{ printf("Using implementation defaults, your system is really messed up, I'm surprised we even got this far\n"); abort();}
}

View File

@ -226,7 +226,7 @@ std::string read_config()
fclose ( in );
return std::string ( projectM_config );
}
else{printf ( "This shouldn't happen, using implementation defualts\n" );abort();}
else{printf ( "This shouldn't happen, using implementation defaults\n" );abort();}
}
else{printf ( "Cannot find projectM default config, using implementation defaults\n" );abort();}
}
@ -239,7 +239,7 @@ std::string read_config()
fclose ( in );
return std::string ( default_config );
}
else{ printf ( "Using implementation defaults, your system is really messed up, I'm suprised we even got this far\n" ); abort();}
else{ printf ( "Using implementation defaults, your system is really messed up, I'm surprised we even got this far\n" ); abort();}
}

View File

@ -112,7 +112,7 @@ class QProjectMWidget : public QGLWidget
void resetProjectM()
{
std::cout << "reseting" << std::endl;
std::cout << "resetting" << std::endl;
qDebug() << "reset start";
emit ( projectM_BeforeDestroy() );

View File

@ -107,7 +107,7 @@ std::string getConfigFilePath(std::string datadir_path) {
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION, "Cannot create ~/.projectM/config.inp, using default config file\n");
return std::string(projectM_config);
} else {
SDL_LogWarn(SDL_LOG_CATEGORY_ERROR, "Using implementation defaults, your system is really messed up, I'm suprised we even got this far\n");
SDL_LogWarn(SDL_LOG_CATEGORY_ERROR, "Using implementation defaults, your system is really messed up, I'm surprised we even got this far\n");
return "";
}
}

View File

@ -87,7 +87,7 @@ std::string getConfigFilename()
return std::string(projectM_config);
}
printf("Using implementation defaults, your system is really messed up, I'm suprised we even got this far\n");
printf("Using implementation defaults, your system is really messed up, I'm surprised we even got this far\n");
abort();
}