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

cosmetic cleanup

This commit is contained in:
jules 2008-06-17 11:53:12 +00:00
parent 04367b199a
commit 29e2de7fd0
40 changed files with 3783 additions and 3787 deletions

View file

@ -549,7 +549,7 @@ void ComboBox::showPopup()
else if (item->isHeading)
menu.addSectionHeader (item->name);
else
menu.addItem (item->itemId, item->name,
menu.addItem (item->itemId, item->name,
item->isEnabled, item->itemId == currentId);
}

View file

@ -37,7 +37,7 @@ BEGIN_JUCE_NAMESPACE
#include "../../graphics/imaging/juce_ImageCache.h"
void* juce_findFileStart (const String& directory, const String& wildCard, String& firstResultFile,
bool* isDirectory, bool* isHidden, int64* fileSize, Time* modTime,
bool* isDirectory, bool* isHidden, int64* fileSize, Time* modTime,
Time* creationTime, bool* isReadOnly) throw();
bool juce_findFileNext (void* handle, String& resultFile,
bool* isDirectory, bool* isHidden, int64* fileSize,

View file

@ -82,7 +82,7 @@ public:
do its own repainting, but only to repaint when the
performAnyPendingRepaintsNow() method is called. */
windowIsSemiTransparent = (1 << 31) /**< Not intended for public use - makes a window transparent. */
};
//==============================================================================