1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-08 04:20:09 +00:00

Small change to method in RectanglePlacement and Drawable to use Rectangles instead of bare coordinates. Fix to make ValueTree::sort use an UndoManager, and to prevent different mouse buttons being interpreted as a double-click.

This commit is contained in:
Julian Storer 2010-10-18 16:04:32 +01:00
parent 85c32498dc
commit b80bb4bf38
15 changed files with 90 additions and 96 deletions

View file

@ -452,17 +452,12 @@ static NSArray* findDiskBurnerDevices()
NSMutableArray* results = [NSMutableArray array];
NSArray* devs = [DRDevice devices];
if (devs != 0)
for (int i = 0; i < [devs count]; ++i)
{
int num = [devs count];
int i;
for (i = 0; i < num; ++i)
{
NSDictionary* dic = [[devs objectAtIndex: i] info];
NSString* name = [dic valueForKey: DRDeviceProductNameKey];
if (name != nil)
[results addObject: name];
}
NSDictionary* dic = [[devs objectAtIndex: i] info];
NSString* name = [dic valueForKey: DRDeviceProductNameKey];
if (name != nil)
[results addObject: name];
}
return results;

View file

@ -140,7 +140,7 @@ bool File::isHidden() const
static const String getIOSSystemLocation (NSSearchPathDirectory type)
{
return nsStringToJuce ([NSSearchPathForDirectoriesInDomains (type, NSUserDomainMask, YES)
objectAtIndex:0]);
objectAtIndex: 0]);
}
#endif