From: asv Date: Fri, 27 Jan 2006 06:55:18 +0000 (+0000) Subject: There was an error in last integration (source not compilable on RedHat) in dirPath... X-Git-Tag: T2_2_9pre~8 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=2da8de5855429d83b5b59bdb5a8fa4ce57006c6a;p=modules%2Fkernel.git There was an error in last integration (source not compilable on RedHat) in dirPath() function. Now it is fixed. --- diff --git a/src/SALOMEGUI/QAD_FileDlg.cxx b/src/SALOMEGUI/QAD_FileDlg.cxx index dd6a89c5f..3748e0043 100644 --- a/src/SALOMEGUI/QAD_FileDlg.cxx +++ b/src/SALOMEGUI/QAD_FileDlg.cxx @@ -425,5 +425,5 @@ QString QAD_FileDlg::dirPath() const if ( !mySelectedFile.isNull() ) return QFileInfo( mySelectedFile ).dirPath(); - return QFileDialog::dirPath(); + return QFileDialogP::dirPath(); }