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
data/lib/3.1/fox16_c.so CHANGED
Binary file
data/lib/3.2/fox16_c.so CHANGED
Binary file
data/lib/3.3/fox16_c.so CHANGED
Binary file
data/lib/fox16/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Fox
2
2
  def Fox.fxrubyversion
3
- "1.6.47"
3
+ "1.6.48"
4
4
  end
5
5
  end
Binary file
Binary file
@@ -63,7 +63,7 @@ public:
63
63
  VALUE result = rb_ary_new();
64
64
  FXString *filenames = self->getFilenames();
65
65
  if (filenames) {
66
- register FXString *p = filenames;
66
+ FXString *p = filenames;
67
67
  while ((*p) != FXString::null) {
68
68
  rb_ary_push(result, to_ruby(*p));
69
69
  p++;
@@ -232,7 +232,7 @@ public:
232
232
  FXString *filenames = FXFileDialog::getOpenFilenames(owner, caption,
233
233
  path, patterns, initial);
234
234
  if (filenames) {
235
- register FXString *p = filenames;
235
+ FXString *p = filenames;
236
236
  while ((*p) != FXString::null) {
237
237
  rb_ary_push(result, to_ruby(*p));
238
238
  p++;
@@ -132,7 +132,7 @@ public:
132
132
  VALUE result = rb_ary_new();
133
133
  FXString *filenames = self->getFilenames();
134
134
  if (filenames) {
135
- register FXString *p = filenames;
135
+ FXString *p = filenames;
136
136
  while ((*p) != FXString::null) {
137
137
  rb_ary_push(result, to_ruby(*p));
138
138
  p++;
@@ -275,7 +275,7 @@ public:
275
275
  VALUE objects = rb_ary_new();
276
276
  FXGLObject** items = self->lasso(x1, y1, x2, y2);
277
277
  if (items) {
278
- register FXGLObject** p = items;
278
+ FXGLObject** p = items;
279
279
  while (*p) {
280
280
  rb_ary_push(objects, to_ruby(*p));
281
281
  p++;
@@ -775,7 +775,7 @@ inline void* to_FXEvent(VALUE obj){
775
775
  $result=Qnil;
776
776
  if($1){
777
777
  $result=rb_ary_new();
778
- register FXGLObject** p=$1;
778
+ FXGLObject** p=$1;
779
779
  while(*p){
780
780
  rb_ary_push($result,to_ruby(*p));
781
781
  p++;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fxruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.47
4
+ version: 1.6.48
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - Lyle Johnson
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2024-02-15 00:00:00.000000000 Z
12
+ date: 2024-07-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mini_portile2