]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.C
reformatting and remove using delc
[lyx.git] / src / lyxrow.C
index f5b816e511806188a79a45a0280f0619779e6464..4a90389d9b4c66d517a85ab9811eb8712671409c 100644 (file)
 
 #include <config.h>
 
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include "lyxrow.h"
 
 
@@ -25,18 +29,6 @@ void Row::par(LyXParagraph * p)
 }
 
 
-LyXParagraph * Row::par()
-{
-       return par_;
-}
-
-
-LyXParagraph * Row::par() const
-{
-       return par_;
-}
-
-
 void Row::pos(LyXParagraph::size_type p)
 {
        pos_ = p;
@@ -67,12 +59,6 @@ void Row::height(unsigned short h)
 }
 
 
-unsigned short Row::height() const
-{
-       return height_;
-}
-
-
 void Row::width(unsigned int w)
 {
        width_ = w;
@@ -115,12 +101,6 @@ void Row::next(Row * r)
 }
 
 
-Row * Row::next() const
-{
-       return next_;
-}
-
-
 void Row::previous(Row * r)
 {
        previous_ = r;