From c1bdd7cf1fec3e07effb27e304be4a8c2489815d Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Mon, 10 Sep 2012 16:26:11 +0000 Subject: [PATCH] 2012-09-10 09:24 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbide/saveload.prg ! Fixed: a bug where wrong parent to QInputDialog() was sent. Reported by Massimo, thanks. --- harbour/contrib/hbide/saveload.prg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harbour/contrib/hbide/saveload.prg b/harbour/contrib/hbide/saveload.prg index a792ba24aa..2d4c44e669 100644 --- a/harbour/contrib/hbide/saveload.prg +++ b/harbour/contrib/hbide/saveload.prg @@ -1939,7 +1939,7 @@ METHOD IdeSetup:execEvent( nEvent, p, p1 ) EXIT CASE __buttonAddTextext_clicked__ - q0 := hbide_fetchAString( ::oUI, "", "Text File Extension" ) + q0 := hbide_fetchAString( ::oUI:oWidget, "", "Text File Extension" ) IF !empty( q0 ) ::oUI:listTextExt:addItem( lower( strtran( q0, "." ) ) ) ENDIF