mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
fix broken dialog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23548 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1847d3f3e5
commit
ac20e8e694
@ -99,8 +99,6 @@ GuiTexInfo::GuiTexInfo(GuiView & lv)
|
||||
connect(fileListLW, SIGNAL(itemSelectionChanged()),
|
||||
this, SLOT(enableViewPB()));
|
||||
|
||||
updateStyles(ClsType);
|
||||
|
||||
bc().setPolicy(ButtonPolicy::OkCancelPolicy);
|
||||
bc().setCancel(closePB);
|
||||
}
|
||||
@ -150,7 +148,7 @@ void GuiTexInfo::updateStyles(TexFileType type)
|
||||
{
|
||||
ContentsType & data = texdata_[type];
|
||||
|
||||
static string filenames[] = { "clsFile.lst", "styFiles.lst", "bstFiles.lst" };
|
||||
static string filenames[] = { "clsFiles.lst", "styFiles.lst", "bstFiles.lst" };
|
||||
string filename = filenames[type];
|
||||
|
||||
getTexFileList(filename, data);
|
||||
@ -161,14 +159,12 @@ void GuiTexInfo::updateStyles(TexFileType type)
|
||||
rescanTexStyles();
|
||||
getTexFileList(filename, data);
|
||||
}
|
||||
bool const withFullPath = pathCB->isChecked();
|
||||
if (withFullPath)
|
||||
return;
|
||||
vector<string>::iterator it1 = data.begin();
|
||||
vector<string>::iterator end1 = data.end();
|
||||
for (; it1 != end1; ++it1)
|
||||
*it1 = support::onlyFilename(*it1);
|
||||
|
||||
if (!pathCB->isChecked()) {
|
||||
vector<string>::iterator it1 = data.begin();
|
||||
vector<string>::iterator end1 = data.end();
|
||||
for (; it1 != end1; ++it1)
|
||||
*it1 = support::onlyFilename(*it1);
|
||||
}
|
||||
// sort on filename only (no path)
|
||||
sort(data.begin(), data.end());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user