By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 597
Collapse All | Expand All

(-)/tmp/kdebindings-3.5.10/qtruby/rubylib/qtruby/Qt.cpp.old (-2 / +2 lines)
Lines 1772-1778 Link Here
1772
VALUE
1772
VALUE
1773
getmetainfo(VALUE self, int &offset, int &index)
1773
getmetainfo(VALUE self, int &offset, int &index)
1774
{
1774
{
1775
    const char * signalname = rb_id2name(rb_frame_last_func());
1775
    const char * signalname = rb_id2name(rb_frame_this_func());
1776
    VALUE metaObject_value = rb_funcall(qt_internal_module, rb_intern("getMetaObject"), 1, self);
1776
    VALUE metaObject_value = rb_funcall(qt_internal_module, rb_intern("getMetaObject"), 1, self);
1777
1777
1778
    smokeruby_object *ometa = value_obj_info(metaObject_value);
1778
    smokeruby_object *ometa = value_obj_info(metaObject_value);
Lines 1862-1868 Link Here
1862
    // Now, I need to find out if this means me
1862
    // Now, I need to find out if this means me
1863
    int index;
1863
    int index;
1864
    char *slotname;
1864
    char *slotname;
1865
    bool isSignal = qstrcmp(rb_id2name(rb_frame_last_func()), "qt_emit") == 0;
1865
    bool isSignal = qstrcmp(rb_id2name(rb_frame_this_func()), "qt_emit") == 0;
1866
    VALUE mocArgs = getslotinfo(self, id, slotname, index, isSignal);
1866
    VALUE mocArgs = getslotinfo(self, id, slotname, index, isSignal);
1867
    if(mocArgs == Qnil) {
1867
    if(mocArgs == Qnil) {
1868
		// No ruby slot/signal found, assume the target is a C++ one
1868
		// No ruby slot/signal found, assume the target is a C++ one

Return to bug 597