]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Clipboard.h
Rename .C ==> .cpp for files in src/frontends, part two
[lyx.git] / src / frontends / Clipboard.h
index deddf5b0c98e72e914528b7907a94652af86d332..3381475cbce95123d80cfcd6c2a3c0f02966135a 100644 (file)
@@ -52,15 +52,18 @@ public:
        /// Does the clipboard contain LyX contents?
        virtual bool hasLyXContents() const = 0;
        /// state of clipboard.
-       /// \retval true if the system clipboard has been set within LyX.
+       /// \returns true if the system clipboard has been set within LyX
+       /// (document contents, dialogs count as external here).
        virtual bool isInternal() const = 0;
        /// Is the clipboard empty?
+       /// \returns true if both the LyX and the plaintext versions of the
+       /// clipboard are empty.
        virtual bool empty() const = 0;
 };
 
 } // namespace frontend
 
-/// Implementation is in Application.C
+/// Implementation is in Application.cpp
 extern frontend::Clipboard & theClipboard();
 
 } // namespace lyx