X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FLyXFileDialog.cpp;h=f00bbd61bf31ea92f5d358e13226159b7b45c9c8;hb=ba76bf5eb85db5a10839fccee3430d906d3f7b70;hp=c88ee9d49161fdd8b25c4a6a19ef2c30fcdcf4e7;hpb=9be03a87f93796665dc5d28a5d3ff7ffb80bcf1d;p=lyx.git diff --git a/src/frontends/qt4/LyXFileDialog.cpp b/src/frontends/qt4/LyXFileDialog.cpp index c88ee9d491..f00bbd61bf 100644 --- a/src/frontends/qt4/LyXFileDialog.cpp +++ b/src/frontends/qt4/LyXFileDialog.cpp @@ -21,8 +21,8 @@ #include #include -using lyx::support::split; -using std::string; +using namespace std; +using namespace lyx::support; namespace lyx { @@ -35,10 +35,9 @@ static docstring const getLabel(docstring const & ucs4str) string sc = split(str, label, '|'); if (sc.length() < 2) return from_utf8(label); - string::size_type pos = label.find(sc[1]); - if (pos == string::npos) - return from_utf8(label); - label.insert(pos, 1, '&'); + size_t pos = label.find(sc[1]); + if (pos != string::npos) + label.insert(pos, 1, '&'); return from_utf8(label); } @@ -48,10 +47,17 @@ LyXFileDialog::LyXFileDialog(docstring const & t, support::FileFilterList const & filters, FileDialog::Button const & b1, FileDialog::Button const & b2) - // FIXME replace that with theApp->gui()->currentView() + // FIXME replace that with guiApp->currentView() : QFileDialog(qApp->focusWidget(), toqstr(t), toqstr(p), toqstr(filters.as_string())) { + QString const path = toqstr(p); + QDir dir(path); + // FIXME: workaround for a bug in qt which makes LyX crash + // with hidden paths (bug 4513). Recheck with recent Qt versions. + if (path.contains("/.")) + dir.setFilter(QDir::Hidden); + setDirectory(dir); setWindowTitle(toqstr(t)); QList layout = findChildren(); @@ -59,7 +65,7 @@ LyXFileDialog::LyXFileDialog(docstring const & t, if (!b1.first.empty()) { b1_dir_ = b1.second; QToolButton * tb = new QToolButton(this); - connect(tb, SIGNAL(clicked()), this, SLOT(buttonClicked())); + connect(tb, SIGNAL(clicked()), this, SLOT(button1Clicked())); tb->setText(toqstr(getLabel(b1.first))); layout.at(0)->addWidget(tb); } @@ -67,7 +73,7 @@ LyXFileDialog::LyXFileDialog(docstring const & t, if (!b2.first.empty()) { b2_dir_ = b2.second; QToolButton * tb = new QToolButton(this); - connect(tb, SIGNAL(clicked()), this, SLOT(buttonClicked())); + connect(tb, SIGNAL(clicked()), this, SLOT(button2Clicked())); tb->setText(toqstr(getLabel(b2.first))); layout.at(0)->addWidget(tb); }