qtbindings 4.6.3.3 → 4.6.3.4

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.
@@ -24,3 +24,10 @@ v4.6.3.2
24
24
  2010/12/05 - Make smokegen not parse stdio.h as a workaround for FreeBSD based systems
25
25
  2010/12/05 - Minor changes to support Qt 4.7 on various platforms including Ubuntu 10.10
26
26
 
27
+ v4.6.3.3
28
+ 2011/08/05 - Handle issues building against Ruby 1.9.2 and running on Windows with 1.9.2
29
+ 2011/08/05 - Handle incompatibility with Rails regarding constants method
30
+
31
+ v4.6.3.4
32
+ 2011/08/06 - Accidently checked in ruby_check_stack instead of ruby_stack_check
33
+
@@ -301,7 +301,7 @@ Binding::callMethod(Smoke::Index method, void *ptr, Smoke::Stack args, bool /*is
301
301
  // If the virtual method hasn't been overriden, just call the C++ one.
302
302
  // During GC, avoid checking for override and just call the C++ version
303
303
  // If not in a ruby thread, just call the C++ version
304
- if (rb_during_gc() || ruby_check_stack() || rb_respond_to(obj, rb_intern(methodName)) == 0) {
304
+ if (rb_during_gc() || ruby_stack_check() || rb_respond_to(obj, rb_intern(methodName)) == 0) {
305
305
  return false;
306
306
  }
307
307
  QtRuby::VirtualMethodCall c(smoke, method, args, obj, ALLOCA_N(VALUE, smoke->methods[method].numArgs));
@@ -1,2 +1,2 @@
1
- QTBINDINGS_VERSION = '4.6.3.3'
2
- QTBINDINGS_RELEASE_DATE = '2011-08-05 23:17:11 -0600'
1
+ QTBINDINGS_VERSION = '4.6.3.4'
2
+ QTBINDINGS_RELEASE_DATE = '2011-08-06 13:02:46 -0600'
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 4
7
7
  - 6
8
8
  - 3
9
- - 3
10
- version: 4.6.3.3
9
+ - 4
10
+ version: 4.6.3.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Richard Dale
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2011-08-05 00:00:00 -06:00
20
+ date: 2011-08-06 00:00:00 -06:00
21
21
  default_executable:
22
22
  dependencies: []
23
23