mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-21 01:24:21 +00:00
This commit is contained in:
parent
bfdb48d4bc
commit
6264cdcc2b
36 changed files with 150 additions and 145 deletions
|
|
@ -134,9 +134,9 @@ void JUCEApplication::getCommandInfo (const CommandID commandID, ApplicationComm
|
|||
{
|
||||
if (commandID == StandardApplicationCommandIDs::quit)
|
||||
{
|
||||
result.setInfo (T("Quit"),
|
||||
T("Quits the application"),
|
||||
T("Application"),
|
||||
result.setInfo ("Quit",
|
||||
"Quits the application",
|
||||
"Application",
|
||||
0);
|
||||
|
||||
result.defaultKeypresses.add (KeyPress (T('q'), ModifierKeys::commandModifier, 0));
|
||||
|
|
@ -199,7 +199,7 @@ int JUCEApplication::main (String& commandLine, JUCEApplication* const app)
|
|||
|
||||
JUCE_TRY
|
||||
{
|
||||
juce_setCurrentThreadName (T("Juce Message Thread"));
|
||||
juce_setCurrentThreadName ("Juce Message Thread");
|
||||
|
||||
// let the app do its setting-up..
|
||||
app->initialise (commandLine.trim());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue