I created this slot:

public slots:
   void openNSelect();

then in the function :

QFileDialog::getOpenFileName(this,tr("select file"),"/home/",tr("text file(*.txt)"));

it doesn't show me the dialog,if I write that line in some other function like in the QMainWindow constructor,it did show me the window. the project is created using kdevelop with mainwindow object.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Put some debugs to ensure the slot is actually firing. Half the time its a typo in the signal/slot connect that fails to wire up.

If not post more code so we can get a better idea.

link|improve this answer
Hi,I try to debug it,the console says: warning: no such slot qfTools:openNSelect() – user1051003 Dec 20 '11 at 15:44
by the way is it ok to put all my slot function in another cpp? such as slot_function.cpp?the warning says cannot find slot function in qfTools.cpp which is wierd I wrote the slot function in the slot_function.cpp,and the declare are all in the qfTools.h. – user1051003 Dec 20 '11 at 15:49
Ok, so the connect isn't working. Without seeing your code its hard to tell exactly whats going wrong. Show us the connect() line and tell us in which objects its called. – Phil Hannent Dec 20 '11 at 16:16
I've solve the problem by change the connect from: connect(item_openFile,SIGNAL(triggered()),this,SLOT(openNSelect())); to: connect(item_openFile,SIGNAL(triggered()),this,SLOT(openNSelect(void)); so why? I am confusing.. – user1051003 Dec 20 '11 at 16:18
Depends on your definition of openNSelect(). – Phil Hannent Dec 20 '11 at 16:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.