]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlWrap.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / frontends / controllers / ControlWrap.h
index bacfed18a7bca6356f82be4d170145e710c89e85..e21b2dba0711c14ead8e21fdb71955fe8ca42c3f 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Dekel Tsur
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef CONTROLWRAP_H
 
 #include "Dialog.h"
 
+
+namespace lyx {
+
 class InsetWrapParams;
 
+namespace frontend {
+
 class ControlWrap : public Dialog::Controller  {
 public:
        ///
        ControlWrap(Dialog &);
        ///
-       virtual void initialiseParams(string const & data);
+       virtual bool initialiseParams(std::string const & data);
        /// clean-up on hide.
        virtual void clearParams();
        /// clean-up on hide.
@@ -37,4 +42,7 @@ private:
        boost::scoped_ptr<InsetWrapParams> params_;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif