add some assertions.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15330 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2006-10-14 13:15:46 +00:00
parent 8623a61193
commit 3cb466603c

View File

@ -160,30 +160,35 @@ void dispatch(FuncRequest const & action)
LyXFunc & theLyXFunc()
{
BOOST_ASSERT(theApp);
return theApp->lyxFunc();
}
lyx::frontend::FontLoader & theFontLoader()
{
BOOST_ASSERT(theApp);
return theApp->fontLoader();
}
lyx::frontend::FontMetrics const & theFontMetrics(LyXFont const & f)
{
BOOST_ASSERT(theApp);
return theApp->fontLoader().metrics(f);
}
lyx::frontend::Clipboard & theClipboard()
{
BOOST_ASSERT(theApp);
return theApp->clipboard();
}
lyx::frontend::Selection & theSelection()
{
BOOST_ASSERT(theApp);
return theApp->selection();
}