From f1e7f80ae0e3b4e2234cc338f5376e8ee99a338d Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Mon, 30 Jul 2012 19:47:17 +0200 Subject: [PATCH] ui/about: fix instantiation. --- lib/qasim/ui/about.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/qasim/ui/about.rb b/lib/qasim/ui/about.rb index 0072e1c..0936df0 100644 --- a/lib/qasim/ui/about.rb +++ b/lib/qasim/ui/about.rb @@ -2,9 +2,10 @@ require 'qasim/ui/about_ui' module Qasim ; module Ui - class About + class About < Qt::Dialog def initialize - setup_ui(self) + u = Ui_About.new + u.setup_ui(self) end end