This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Use juce namespace for some uint32s in the CodeEditorDemo
tags/2021-05-28
ed
8 years ago
parent
2ee168ad46
commit
a449e3bbb4
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
examples/Demo/Source/Demos/CodeEditorDemo.cpp
+ 2
- 2
examples/Demo/Source/Demos/CodeEditorDemo.cpp
View File
@@ -113,7 +113,7 @@ private:
struct Type
{
const char* name;
uint32 colour;
juce::
uint32 colour;
};
const Type types[] =
@@ -144,7 +144,7 @@ private:
struct Type
{
const char* name;
uint32 colour;
juce::
uint32 colour;
};
const Type types[] =
Write
Preview
Loading…
Cancel
Save