fix warnings in frontends/gtk/FileDialogPrivate.[Ch]

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9323 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Spray 2004-11-29 21:21:57 +00:00
parent 21b99b12d8
commit 84ff0a283c
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ FileDialog::Result const FileDialog::Private::showChooser(string const & path,
{
lyxerr[Debug::GUI] << "File Dialog with path \"" << path
<< "\", mask \"" << filters.as_string()
<< "\", suggested \"" << suggested << '"\n';
<< "\", suggested \"" << suggested << "\"\n";
for (lyx::support::FileFilterList::size_type i = 0; i < filters.size(); ++i) {
typedef lyx::support::FileFilterList::Filter::glob_iterator glob_iterator;

View File

@ -36,8 +36,8 @@ public:
std::string const & suggested);
private:
Gtk::FileChooserDialog fileChooser_;
kb_action action_;
Gtk::FileChooserDialog fileChooser_;
};
#endif