summaryrefslogtreecommitdiff
path: root/test/unittest_schemes.cxx
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2014-02-25 04:24:41 +0000
committerGreg Ercolano <erco@seriss.com>2014-02-25 04:24:41 +0000
commitc5d5ba1cf524f4da930bfd4bd77ba044ecf96e54 (patch)
treec2f55edf5335021dad2696a290a11a49d4982780 /test/unittest_schemes.cxx
parentde7a79afd6231bb1f39c3b3c3a34364da560dfe2 (diff)
Applying the etorres gleam patch. STR #2672.
TODO: Xcode 4 ide needs fl_gleam.cxx added Test of Visual Studio IDE mods (which were hand-modified) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10113 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/unittest_schemes.cxx')
-rw-r--r--test/unittest_schemes.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unittest_schemes.cxx b/test/unittest_schemes.cxx
index f57ab7b79..1354d0f56 100644
--- a/test/unittest_schemes.cxx
+++ b/test/unittest_schemes.cxx
@@ -62,14 +62,14 @@ public:
schemechoice->add("none");
schemechoice->add("plastic");
schemechoice->add("gtk+");
- //schemechoice->add("gleam");
+ schemechoice->add("gleam");
schemechoice->value(0);
schemechoice->labelfont(FL_HELVETICA_BOLD);
const char *name = Fl::scheme();
if ( name ) {
if ( strcmp(name, "plastic") == 0) { schemechoice->value(1); }
else if ( strcmp(name, "gtk+") == 0) { schemechoice->value(2); }
- //else if ( strcmp(name, "gleam") == 0) { schemechoice->value(3); }
+ else if ( strcmp(name, "gleam") == 0) { schemechoice->value(3); }
}
schemechoice->callback(SchemeChoice_CB, (void*)this);