1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00
This commit is contained in:
jules 2007-10-10 14:59:01 +00:00
parent 0c0ef8c87d
commit cf7ae76019
3 changed files with 3 additions and 3 deletions

View file

@ -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()

View file

@ -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 << '_';

View file

@ -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;