mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
This commit is contained in:
parent
0c0ef8c87d
commit
cf7ae76019
3 changed files with 3 additions and 3 deletions
|
|
@ -52,11 +52,11 @@ public:
|
|||
ApplicationProperties::getInstance()->getUserSettings()), true, true);
|
||||
|
||||
setResizable (true, false);
|
||||
setVisible (true);
|
||||
setResizeLimits (300, 400, 800, 1500);
|
||||
setTopLeftPosition (60, 60);
|
||||
|
||||
restoreWindowStateFromString (ApplicationProperties::getInstance()->getUserSettings()->getValue ("listWindowPos"));
|
||||
setVisible (true);
|
||||
}
|
||||
|
||||
~PluginListWindow()
|
||||
|
|
|
|||
|
|
@ -238,7 +238,7 @@ const String makeValidCppIdentifier (String s,
|
|||
T("INT_MAX"), T("iostream"), T("MAX_RAND"), T("NULL"), T("string")
|
||||
};
|
||||
|
||||
for (int i = 0; i < numElementsInArray (reservedWords); ++i)
|
||||
for (i = 0; i < numElementsInArray (reservedWords); ++i)
|
||||
if (n == reservedWords[i])
|
||||
n << '_';
|
||||
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ bool FileInputStream::setPosition (int64 pos)
|
|||
{
|
||||
pos = jlimit ((int64) 0, totalSize, pos);
|
||||
|
||||
needToSeek |= currentPosition != pos;
|
||||
needToSeek |= (currentPosition != pos);
|
||||
currentPosition = pos;
|
||||
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue