|
|
|
@@ -11774,7 +11774,7 @@ public: |
|
|
|
|
|
|
|
static void copyChars (juce_wchar* const dest, const juce_wchar* const src, const size_t numChars) throw() |
|
|
|
{ |
|
|
|
jassert (src != 0 & dest != 0); |
|
|
|
jassert (src != 0 && dest != 0); |
|
|
|
memcpy (dest, src, numChars * sizeof (juce_wchar)); |
|
|
|
dest [numChars] = 0; |
|
|
|
} |
|
|
|
@@ -59083,7 +59083,7 @@ public: |
|
|
|
&icon, |
|
|
|
fileSize, modTime, |
|
|
|
isDirectory, highlighted, |
|
|
|
index); |
|
|
|
index, owner); |
|
|
|
} |
|
|
|
|
|
|
|
void mouseDown (const MouseEvent& e) |
|
|
|
@@ -59825,7 +59825,7 @@ public: |
|
|
|
file.getFileName(), |
|
|
|
&icon, fileSize, modTime, |
|
|
|
isDirectory, isSelected(), |
|
|
|
indexInContentsList); |
|
|
|
indexInContentsList, owner); |
|
|
|
} |
|
|
|
|
|
|
|
void itemClicked (const MouseEvent& e) |
|
|
|
@@ -67444,7 +67444,8 @@ void LookAndFeel::drawFileBrowserRow (Graphics& g, int width, int height, |
|
|
|
const String& fileTimeDescription, |
|
|
|
const bool isDirectory, |
|
|
|
const bool isItemSelected, |
|
|
|
const int /*itemIndex*/) |
|
|
|
const int /*itemIndex*/, |
|
|
|
DirectoryContentsDisplayComponent&) |
|
|
|
{ |
|
|
|
if (isItemSelected) |
|
|
|
g.fillAll (findColour (DirectoryContentsDisplayComponent::highlightColourId)); |
|
|
|
|