]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileName.h
Let paragraph::requestSpellcheck() consider contained insets
[lyx.git] / src / support / FileName.h
index 2bc2e48b8099f9970896450afafa86d069d31aa2..1cf1e730f4801704e2c955d1b132a4d60def40c8 100644 (file)
@@ -42,21 +42,15 @@ public:
         */
        explicit FileName(std::string const & abs_filename);
 
-       /// copy constructor
+       /// copy constructor.
        FileName(FileName const &);
 
-       /// move constructor
-       FileName(FileName &&) noexcept;
-
-       /// constructor with base name and suffix
+       /// constructor with base name and suffix.
        FileName(FileName const & fn, std::string const & suffix);
 
-       /// copy assign
+       ///
        FileName & operator=(FileName const &);
 
-       /// move assign
-       FileName & operator=(FileName &&) noexcept;
-
        virtual ~FileName();
        /** Set a new filename.
         * \param filename the file in question. Must have an absolute path.
@@ -225,7 +219,7 @@ private:
        bool copyTo(FileName const &, bool, FileNameSet &) const;
        ///
        struct Private;
-       Private * d;
+       Private * const d;
 };