0
I Use This!
Inactive

Commits : Listings

Analyzed about 1 hour ago. based on code collected about 1 hour ago.
Nov 30, 2024 — Nov 30, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
[perlqt4 @ 416] Remove the rest of the SUPER special stuff that Eric started to remove a couple revisions ago. No longer makes a ' package' object that is returned by this->SUPER(). Removed this->SUPER(). Removed isSuper variable from XS_AUTOLOAD. We still need to know if we're calling SUPER, but we only have to set withObject to true if we are. Updated the test case to use this->SUPER::method, instead of SUPER->method(). More... almost 16 years ago
[perlqt4 @ 415] Fix some indentation. Add back the method in Qt::isa to create a sub named the same as the package being imported to redirect to new(). Add a check in qstringFromPerlString to see if the value being marshalled is defined before trying to read from it. More... almost 16 years ago
[perlqt4 @ 414] Change the order of the arguments to qVariantValue. The typename argument is optional, so it is now the 2nd argument instead of the first. Before making a call to perl where we're going to check $@ afterward, clear $@ before making the call. If someone else sets $@, we shouldn't error out. Add a little perldoc to Qt.pm about how to use qVariantValue and qVariantFromValue. More... almost 16 years ago
[perlqt4 @ 413] ** the debugger is broken for lvalue subroutines lib/Qt.pm - change $X to $A,$H,$ISUB lib/Qt/isa.pm - change $X to $A,$H,$ISUB More... almost 16 years ago
[perlqt4 @ 412] lib/Qt.pm - shortening a for() loop More... almost 16 years ago
[perlqt4 @ 411] lib/Qt.pm - and remove the apologizing comment about the package name More... almost 16 years ago
[perlqt4 @ 410] lib/Qt.pm - cleaning up some more "no strict" stuff More... almost 16 years ago
[perlqt4 @ 409] lib/Qt.pm - get rid of some of the "no strict 'refs'" mess More... almost 16 years ago
[perlqt4 @ 408] ** ->SUPER was using one xs sub XS to install another xs sub which ** simply retrieves a variable from a package hash ... ** Just use a closure. ** (Aside: we shouldn't really even need that once AUTOLOAD is gone.) ** (Aside: r403 issue still unresolved.) More... almost 16 years ago
[perlqt4 @ 407] lib/Qt/isa.pm - if.pm does not have special permission to behave badly More... almost 16 years ago
[perlqt4 @ 406] lib/Qt/isa.pm - fixed the overly-broad "no strict 'refs'" situation More... almost 16 years ago
[perlqt4 @ 405] Build.PL - added --build-debug option More... almost 16 years ago
[perlqt4 @ 404] Change do_autoload() to be called getSmokeMethodId() More... almost 16 years ago
[perlqt4 @ 403] lib/Qt/isa.pm - putting $caller in @{"$caller::SUPER::ISA"} makes recursion on perl 5.8.8 More... almost 16 years ago
[perlqt4 @ 402] Build.PL - use QtBuilder, some stuff with QtXml inc/QtBuilder.pm - builds puic4 and the examples ui files More... almost 16 years ago
[perlqt4 @ 400] examples/dbus/chat - svn:ignores examples/dbus/complexpingpong - svn:ignores examples/dbus/complexpingpong/complexpong.pl - just write to ./dbuslog More... almost 16 years ago
[perlqt4 @ 398] Build.PL - undo this -Wno-unused (perl.h should not do PERL_UNUSED_DECL with "&& !defined(__cplusplus)" or just: #define dNOOP extern int /*@unused@*/ Perl___notused __attribute__unused__ ) More... almost 16 years ago
[perlqt4 @ 397] Build.PL - set -Wno-unused to workaround Perl___notused More... almost 16 years ago
[perlqt4 @ 396] Adding opengl/hellogl example! More... almost 16 years ago
[perlqt4 @ 394] Adding network/googlesuggest example. More... almost 16 years ago
[perlqt4 @ 393] Adding network/broadcastsender and network/broadcastreceiver examples. More... almost 16 years ago
[perlqt4 @ 390] Don't check for SvPOK in the qstring handler. This will stringify things like numbers correctly. When converting smoke args to qt args in signals and slots, the code was double dereferencing things that had only been referenced once. This has been fixed. I got the regex wrong for cd'ing up one dir when converting the ftp example to perl. That has now been fixed. More... almost 16 years ago
[perlqt4 @ 389] Adding network/ftp example. More... almost 16 years ago
[perlqt4 @ 388] Add test cases for short, ushort, and long. More... almost 16 years ago
[perlqt4 @ 387] Add <char*&> handler. The only thing that uses it is QDataStream's operator>>. I thought that the C++ fortuneserver and fortuneclient packed their data using this handler, but it turns out they don't. More... almost 16 years ago
[perlqt4 @ 386] Add Qt::Short and Qt::Ushort "types" to help with ambiguous methods. Add handlers for <short *> and <unsigned short *> types. Change network/fortune{server,client} to use the Ushort type, like it does in C++. More... almost 16 years ago
[perlqt4 @ 385] Adding network/fortuneserver example. Changes to fortuneclient/Client.pm to get it to talk to the fortuneserver example. Currently these two are incompatible with their C++ counterparts. More... almost 16 years ago
[perlqt4 @ 384] Add cases that match Qt::Int and Qt::Uint. Now it'll match refs and pointers. Adding the network/fortuneclient example. More... almost 16 years ago
[perlqt4 @ 383] Adding richtext/orderform example. More... almost 16 years ago
[perlqt4 @ 381] Adding richtext/calendar example. More... almost 16 years ago