From ef5a04df564ad5c27406c41fb55e32ad3aa39d25 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 27 Feb 2012 17:55:22 -0600 Subject: Rename tqt3 color functions --- qtruby/rubylib/qtruby/Qt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qtruby/rubylib') diff --git a/qtruby/rubylib/qtruby/Qt.cpp b/qtruby/rubylib/qtruby/Qt.cpp index 1a7bd7d9..0c33796f 100644 --- a/qtruby/rubylib/qtruby/Qt.cpp +++ b/qtruby/rubylib/qtruby/Qt.cpp @@ -1759,8 +1759,8 @@ qapplication_argv(VALUE /*self*/) { VALUE result = rb_ary_new(); // Drop argv[0], as it isn't included in the ruby global ARGV - for (int index = 1; index < qApp->argc(); index++) { - rb_ary_push(result, rb_str_new2(qApp->argv()[index])); + for (int index = 1; index < tqApp->argc(); index++) { + rb_ary_push(result, rb_str_new2(tqApp->argv()[index])); } return result; -- cgit v1.2.1