X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2FClipboard.h;h=3381475cbce95123d80cfcd6c2a3c0f02966135a;hb=9a17e559f289845db02bc114fad5190280548e4e;hp=deddf5b0c98e72e914528b7907a94652af86d332;hpb=3500af60babc81d7c1d18221f7aae89805ee3adb;p=lyx.git diff --git a/src/frontends/Clipboard.h b/src/frontends/Clipboard.h index deddf5b0c9..3381475cbc 100644 --- a/src/frontends/Clipboard.h +++ b/src/frontends/Clipboard.h @@ -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