diff options
Diffstat (limited to 'kde-base/korundum/files/korundum-3.5.10-gcc44.patch')
-rw-r--r-- | kde-base/korundum/files/korundum-3.5.10-gcc44.patch | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/kde-base/korundum/files/korundum-3.5.10-gcc44.patch b/kde-base/korundum/files/korundum-3.5.10-gcc44.patch deleted file mode 100644 index bef95b8195bf..000000000000 --- a/kde-base/korundum/files/korundum-3.5.10-gcc44.patch +++ /dev/null @@ -1,74 +0,0 @@ -diff -ur qtruby/rubylib/qtruby/Qt.cpp qtruby/rubylib/qtruby/Qt.cpp ---- qtruby/rubylib/qtruby/Qt.cpp 2007-01-15 12:19:09.000000000 +0100 -+++ qtruby/rubylib/qtruby/Qt.cpp 2008-12-26 17:10:56.000000000 +0100 -@@ -950,7 +950,7 @@ - const char * - get_VALUEtype(VALUE ruby_value) - { -- char * classname = rb_obj_classname(ruby_value); -+ const char * classname = rb_obj_classname(ruby_value); - const char *r = ""; - if(ruby_value == Qnil) - r = "u"; -@@ -1432,7 +1432,7 @@ - static VALUE - method_missing(int argc, VALUE * argv, VALUE self) - { -- char * methodName = rb_id2name(SYM2ID(argv[0])); -+ const char * methodName = rb_id2name(SYM2ID(argv[0])); - VALUE klass = rb_funcall(self, rb_intern("class"), 0); - - // Look for 'thing?' methods, and try to match isThing() or hasThing() in the Smoke runtime -@@ -1475,14 +1475,14 @@ - } - - { -- QCString * mcid = find_cached_selector(argc+3, temp_stack, klass, methodName); -+ QCString * mcid = find_cached_selector(argc+3, temp_stack, klass, (char *)methodName); - - if (_current_method == -1) { - // Find the C++ method to call. Do that from Ruby for now - - VALUE retval = rb_funcall2(qt_internal_module, rb_intern("do_method_missing"), argc+3, temp_stack); - if (_current_method == -1) { -- char * op = rb_id2name(SYM2ID(argv[0])); -+ const char * op = rb_id2name(SYM2ID(argv[0])); - if ( qstrcmp(op, "-") == 0 - || qstrcmp(op, "+") == 0 - || qstrcmp(op, "/") == 0 -@@ -1557,7 +1557,7 @@ - class_method_missing(int argc, VALUE * argv, VALUE klass) - { - VALUE result = Qnil; -- char * methodName = rb_id2name(SYM2ID(argv[0])); -+ const char * methodName = rb_id2name(SYM2ID(argv[0])); - VALUE * temp_stack = (VALUE *) calloc(argc+3, sizeof(VALUE)); - temp_stack[0] = rb_str_new2("Qt"); - temp_stack[1] = rb_str_new2(methodName); -@@ -1568,7 +1568,7 @@ - } - - { -- QCString * mcid = find_cached_selector(argc+3, temp_stack, klass, methodName); -+ QCString * mcid = find_cached_selector(argc+3, temp_stack, klass, (char *)methodName); - - if (_current_method == -1) { - VALUE retval = rb_funcall2(qt_internal_module, rb_intern("do_method_missing"), argc+3, temp_stack); -@@ -1674,7 +1674,7 @@ - { - // Put this in a C block so that the mcid will be de-allocated at the end of the block, - // rather than on f'n exit, to avoid the longjmp problem described below -- QCString * mcid = find_cached_selector(argc+4, temp_stack, klass, rb_class2name(klass)); -+ QCString * mcid = find_cached_selector(argc+4, temp_stack, klass, (char *)rb_class2name(klass)); - - if (_current_method == -1) { - retval = rb_funcall2(qt_internal_module, rb_intern("do_method_missing"), argc+4, temp_stack); -@@ -1772,7 +1772,7 @@ - VALUE - getmetainfo(VALUE self, int &offset, int &index) - { -- char * signalname = rb_id2name(rb_frame_last_func()); -+ const char * signalname = rb_id2name(rb_frame_last_func()); - VALUE metaObject_value = rb_funcall(qt_internal_module, rb_intern("getMetaObject"), 1, self); - - smokeruby_object *ometa = value_obj_info(metaObject_value); |