fxruby 1.6.47-x64-mingw-ucrt → 1.6.48-x64-mingw-ucrt

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/History.md +6 -1
  3. data/doap.rdf +1 -1
  4. data/ext/fox16_c/FXRuby.cpp +2 -2
  5. data/ext/fox16_c/core_wrap.cpp +497 -412
  6. data/ext/fox16_c/dc_wrap.cpp +215 -128
  7. data/ext/fox16_c/dialogs_wrap.cpp +1333 -1246
  8. data/ext/fox16_c/extconf.rb +3 -3
  9. data/ext/fox16_c/frames_wrap.cpp +633 -550
  10. data/ext/fox16_c/fx3d_wrap.cpp +1556 -1471
  11. data/ext/fox16_c/iconlist_wrap.cpp +555 -468
  12. data/ext/fox16_c/icons_wrap.cpp +1062 -975
  13. data/ext/fox16_c/image_wrap.cpp +912 -825
  14. data/ext/fox16_c/label_wrap.cpp +744 -657
  15. data/ext/fox16_c/layout_wrap.cpp +564 -477
  16. data/ext/fox16_c/list_wrap.cpp +556 -469
  17. data/ext/fox16_c/markfuncs.cpp +1 -1
  18. data/ext/fox16_c/mdi_wrap.cpp +1453 -1366
  19. data/ext/fox16_c/menu_wrap.cpp +1216 -1129
  20. data/ext/fox16_c/scintilla_wrap.cpp +1034 -943
  21. data/ext/fox16_c/swigruby.h +88 -28
  22. data/ext/fox16_c/table_wrap.cpp +1034 -945
  23. data/ext/fox16_c/text_wrap.cpp +1029 -942
  24. data/ext/fox16_c/treelist_wrap.cpp +1083 -996
  25. data/ext/fox16_c/ui_wrap.cpp +1210 -1123
  26. data/lib/3.1/fox16_c.so +0 -0
  27. data/lib/3.2/fox16_c.so +0 -0
  28. data/lib/3.3/fox16_c.so +0 -0
  29. data/lib/fox16/version.rb +1 -1
  30. data/ports/x64-mingw-ucrt/bin/libFOX-1.6-0.dll +0 -0
  31. data/ports/x64-mingw-ucrt/bin/libfxscintilla-20.dll +0 -0
  32. data/ports/x64-mingw-ucrt/bin/libjpeg-62.dll +0 -0
  33. data/ports/x64-mingw-ucrt/bin/libpng16-16.dll +0 -0
  34. data/ports/x64-mingw-ucrt/bin/libtiff-6.dll +0 -0
  35. data/ports/x64-mingw-ucrt/bin/zlib1.dll +0 -0
  36. data/swig-interfaces/FXFileDialog.i +2 -2
  37. data/swig-interfaces/FXFileSelector.i +1 -1
  38. data/swig-interfaces/FXGLViewer.i +1 -1
  39. data/swig-interfaces/ruby-typemaps.i +1 -1
  40. metadata +2 -2
@@ -222,7 +222,7 @@ void FXRbWindow::markfunc(FXWindow* self){
222
222
  FXRbGcMark(self->FXWindow::getDragCursor());
223
223
 
224
224
  // Mark child windows
225
- register FXWindow* child=self->FXWindow::getFirst();
225
+ FXWindow* child=self->FXWindow::getFirst();
226
226
  while(child!=NULL){
227
227
  FXRbGcMark(child);
228
228
  child=child->FXWindow::getNext();