1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-26 02:14:22 +00:00
This commit is contained in:
jules 2008-05-18 21:10:35 +00:00
parent 671de59be3
commit e08ebbf2e6
111 changed files with 1232 additions and 1461 deletions

View file

@ -352,7 +352,8 @@ struct FindFileStruct
// returns 0 on failure
void* juce_findFileStart (const String& directory, const String& wildCard, String& firstResultFile,
bool* isDir, bool* isHidden, int64* fileSize, Time* modTime, Time* creationTime, bool* isReadOnly) throw()
bool* isDir, bool* isHidden, int64* fileSize, Time* modTime,
Time* creationTime, bool* isReadOnly) throw()
{
DIR* d = opendir (directory.toUTF8());

View file

@ -177,8 +177,6 @@ bool juce_isRunningAsApplication()
extern Display* display;
extern XContext improbableNumber;
const int juce_windowIsSemiTransparentFlag = (1 << 31); // also in component.cpp
static const int eventMask = NoEventMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask
| EnterWindowMask | LeaveWindowMask | PointerMotionMask | KeymapStateMask
| ExposureMask | StructureNotifyMask | FocusChangeMask;
@ -2052,7 +2050,7 @@ private:
XSetWMHints (display, wndH, wmHints);
XFree (wmHints);
if ((styleFlags & juce_windowIsSemiTransparentFlag) != 0)
if ((styleFlags & windowIsSemiTransparent) != 0)
{
//xxx
}