]> git.lyx.org Git - features.git/commitdiff
Add comments WRT to where the function implementations are.
authorAbdelrazak Younes <younes@lyx.org>
Sat, 14 Oct 2006 19:58:42 +0000 (19:58 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Sat, 14 Oct 2006 19:58:42 +0000 (19:58 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15334 a592a061-630c-0410-9148-cb99ea01b6c8

src/bufferlist.h
src/frontends/Clipboard.h
src/frontends/FontLoader.h
src/frontends/FontMetrics.h
src/frontends/Selection.h
src/lyxfunc.h

index c948d1b1ce9cfea1a9abe4fb557c8bde938a684b..f43725a76e6a3f0d9708517b1af8512692c4d5ec 100644 (file)
@@ -99,6 +99,7 @@ private:
        void emergencyWrite(Buffer * buf);
 };
 
+/// Implementation is in lyx_main.C
 extern BufferList & theBufferList();
 
 #endif // BUFFERLIST_H
index d75f3cf4a4e3b6d84084f7d157f8854ef0ef0b14..c6182bc7c018c2bc66d3b4fdb981312d87ff698c 100644 (file)
@@ -44,6 +44,7 @@ public:
 } // namespace frontend
 } // namespace lyx
 
+/// Implementation is in Application.C
 extern lyx::frontend::Clipboard & theClipboard();
 
 #endif // BASE_CLIPBOARD_H
index 9000353cf38b267828c419988a9b5791b9c9fcf9..dc4b7458d6a53669000e7566b9179a51410fad07 100644 (file)
@@ -41,6 +41,7 @@ public:
 } // namespace frontend
 } // namespace lyx
 
+/// Implementation is in Application.C
 extern lyx::frontend::FontLoader & theFontLoader();
 
 #endif // QFONT_LOADER_H
index 16dbf00f70a31b1fab966c4dcf45a82fbf4e0869..41b526caf236f03a7c984e943d2cf047638f19e9 100644 (file)
@@ -116,6 +116,7 @@ public:
 
 class LyXFont;
 
+/// Implementation is in Application.C
 extern lyx::frontend::FontMetrics const & theFontMetrics(LyXFont const & f);
 
 #endif // FONT_METRICS_H
index c281d72cc5ad8e1723fe9f804e0d4458d04920c7..6a464172064a8e8678b1ab3792ae4bcdd05565cd 100644 (file)
@@ -48,6 +48,7 @@ public:
 } // namespace frontend
 } // namespace lyx
 
+/// Implementation is in Application.C
 extern lyx::frontend::Selection & theSelection();
 
 #endif // BASE_SELECTION_H
index 399d0739d210142d16f52f42a897b0a087579d9e..428709ce1571bc0aa9b64527f83d26b8718d6abd 100644 (file)
@@ -119,8 +119,10 @@ extern LyXFunc & theLyXFunc();
 
 namespace lyx {
 
+/// Implementation is in frontends/Application.C
 extern FuncStatus getStatus(FuncRequest const & action);
 
+/// Implementation is in frontends/Application.C
 extern void dispatch(FuncRequest const & action);
 }