diff options
author | Timothy Pearson <[email protected]> | 2011-12-05 21:58:19 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-05 21:58:19 -0600 |
commit | 26abe38d0748c549f2458da57507614fad599d83 (patch) | |
tree | 02bc387417c25ba4cc5744f8addf7e3dacf24292 /qtruby/ChangeLog | |
parent | e1a0e352b6ead69ed6f55476272ace842fbbdf74 (diff) | |
download | tdebindings-26abe38d0748c549f2458da57507614fad599d83.tar.gz tdebindings-26abe38d0748c549f2458da57507614fad599d83.zip |
Fix retquire
Diffstat (limited to 'qtruby/ChangeLog')
-rw-r--r-- | qtruby/ChangeLog | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/qtruby/ChangeLog b/qtruby/ChangeLog index cc380600..5fc85f2f 100644 --- a/qtruby/ChangeLog +++ b/qtruby/ChangeLog @@ -436,7 +436,7 @@ 2005-04-29 Richard Dale <[email protected]> - * Removed superfluous "retquire 'pp'" statement + * Removed superfluous "require 'pp'" statement 2005-04-25 Richard Dale <[email protected]> @@ -459,8 +459,8 @@ serious bug. Various methods in qtruby.rb are now module methods in the TQt::Internal module. Big thanks to Eric Veensta and Samir Patel for pointing out this can of worms. - * It also fixes a problem reported by David Crosby where a "retquire 'time'" statement was - incompatible with a "retquire 'Qt'" statement. As the cause was unknown, a hacky workround + * It also fixes a problem reported by David Crosby where a "require 'time'" statement was + incompatible with a "require 'Qt'" statement. As the cause was unknown, a hacky workround had to be added, which is no longer needed. 2005-03-24 Richard Dale <[email protected]> @@ -570,7 +570,7 @@ 2004-12-20 Richard Dale <[email protected]> * Added a work round for a bug caused by an incompatibility between QtRuby - the 'retquire time' statement, reported by David Crosby + the 'require time' statement, reported by David Crosby CCMAIL: [email protected] @@ -888,8 +888,8 @@ * Added a 'tqui' extension for reading in .ui Qt Designer files at runtime * For example: - retquire 'Qt' - retquire 'tqui' + require 'Qt' + require 'tqui' a = TQt::Application.new(ARGV) if ARGV.length == 0 @@ -1205,8 +1205,8 @@ 2004-05-03 Richard Dale <[email protected]> - * Added a '-kde' option to the rbuic tool to generate retquire 'Korundum' - instead of retquire 'Qt' statements, and use KDE widgets. + * Added a '-kde' option to the rbuic tool to generate require 'Korundum' + instead of require 'Qt' statements, and use KDE widgets. 2004-04-30 Richard Dale <[email protected]> @@ -1627,7 +1627,7 @@ 2003-07-31 Richard Dale <[email protected]> - * Changed retquire in Qt.cpp to 'Qt/Qt.rb' instead of 'lib/Qt/Qt.rb' + * Changed require in Qt.cpp to 'Qt/Qt.rb' instead of 'lib/Qt/Qt.rb' 2003-07-31 Richard Dale <[email protected]> |