]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlParagraph.C
Add a buffer_path arg to InsetGraphicsMailer's params2string, string2params.
[lyx.git] / src / frontends / controllers / ControlParagraph.C
index 3caf7a194625c2f37e675781da96877762a85d16..ae9c3e9c85002ebc62ecaf73c3a9984768a88bd6 100644 (file)
@@ -20,6 +20,7 @@
 #include "support/LAssert.h"
 #include "Lsstream.h"
 
+using namespace lyx::support;
 
 ControlParagraph::ControlParagraph(Dialog & parent)
        : Dialog::Controller(parent), ininset_(false)
@@ -125,14 +126,14 @@ void ControlParagraph::dispatchParams()
 
 ParagraphParameters & ControlParagraph::params()
 {
-       lyx::Assert(params_.get());
+       Assert(params_.get());
        return *params_;
 }
 
 
 ParagraphParameters const & ControlParagraph::params() const
 {
-       lyx::Assert(params_.get());
+       Assert(params_.get());
        return *params_;
 }