1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

changed the look and feel classes, to make "shiny" the new default look, and moved the old look into an OldSchoolLookAndFeel class.

This commit is contained in:
jules 2007-06-20 13:14:27 +00:00
parent 1bb0bf0b36
commit 205304c3a9
23 changed files with 1689 additions and 1666 deletions

View file

@ -65,7 +65,7 @@ static juce_noinline unsigned int getCPUIDWord (int* familyModel, int* extFeatur
unsigned int dummy = 0;
#if JUCE_64BIT
__asm__ ("cpuid"
__asm__ ("cpuid"
: "=a" (family), "=b" (ext), "=c" (dummy), "=d" (cpu) : "a" (1));
#else