]> git.lyx.org Git - lyx.git/blobdiff - src/insets/mailinset.C
ws changes only
[lyx.git] / src / insets / mailinset.C
index 789c694dd218278f09e793e23cec4ac8b796f306..c7861f0f7e9dee2fc05b4a9f6df9fbe5609bdf29 100644 (file)
@@ -1,4 +1,3 @@
-// -*- C++ -*-
 /**
  * \file mailinset.C
  * This file is part of LyX, the document processor.
@@ -6,24 +5,22 @@
  *
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
 #include "mailinset.h"
-#include "inset.h"
+
 #include "BufferView.h"
-#include "frontends/LyXView.h"
+
 #include "frontends/Dialogs.h"
-#include "support/LAssert.h"
-#include "Lsstream.h"
+#include "frontends/LyXView.h"
 
-using namespace lyx::support;
 
 void MailInset::showDialog(BufferView * bv) const
 {
-       Assert(bv);
+       BOOST_ASSERT(bv);
        bv->owner()->getDialogs().show(name(), inset2string(*bv->buffer()),
                                       &inset());
 }
@@ -31,7 +28,7 @@ void MailInset::showDialog(BufferView * bv) const
 
 void MailInset::updateDialog(BufferView * bv) const
 {
-       Assert(bv);
+       BOOST_ASSERT(bv);
        if(bv->owner()->getDialogs().visible(name()))
                bv->owner()->getDialogs().update(name(),
                                                 inset2string(*bv->buffer()));