Sha256: 59cd90e1ea52c6cde6a6a0fd8609f1c8cd162cb0f3cf12d492e4835ceeaa2ba2
Contents?: true
Size: 458 Bytes
Versions: 11
Compression:
Stored size: 458 Bytes
Contents
# Gauge : presents a progress bar # # On the C++ side, the actual class name of wxGauge under Windows is # wxGauge95. So when a Gauge is loaded from XRC, and we try to wrap the # object in a ruby class by calling obj->ClassInfo()->ClassName(), it # seeks for a ruby class (Wx::Gauge95) that doesn't exist (see # swig/shared/get_ruby_object.i). # # To fix this, make Wx::Gauge95 an alias. if Wx::PLATFORM == 'WXMSW' Wx::Gauge95 = Wx::Gauge end
Version data entries
11 entries across 11 versions & 1 rubygems