mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* GuiView.{cpp, h}:
- fix compilation (gcc didn't like the string arguments in the header file) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24530 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
bf27334cfa
commit
74d1f2cb2f
@ -916,6 +916,12 @@ void GuiView::errors(string const & error_type)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void GuiView::structureChanged()
|
||||||
|
{
|
||||||
|
updateDialog("toc", "");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void GuiView::updateDialog(string const & name, string const & data)
|
void GuiView::updateDialog(string const & name, string const & data)
|
||||||
{
|
{
|
||||||
if (!isDialogVisible(name))
|
if (!isDialogVisible(name))
|
||||||
|
@ -104,7 +104,7 @@ public:
|
|||||||
///@{
|
///@{
|
||||||
void resetAutosaveTimers();
|
void resetAutosaveTimers();
|
||||||
void errors(std::string const &);
|
void errors(std::string const &);
|
||||||
void structureChanged() { updateDialog("toc", ""); }
|
void structureChanged();
|
||||||
///@}
|
///@}
|
||||||
|
|
||||||
/// called on timeout
|
/// called on timeout
|
||||||
|
Loading…
Reference in New Issue
Block a user