]> git.lyx.org Git - lyx.git/blobdiff - src/tabular_funcs.h
fix typo that put too many include paths for most people
[lyx.git] / src / tabular_funcs.h
index fd686e1575e30461357edaee770475f9d2ab245b..5db625f4384a0755977eda980cd777b0fa539498 100644 (file)
@@ -1,14 +1,14 @@
 // -*- C++ -*-
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 2000-2001 The LyX Team.
  *
  *           @author: Jürgen Vigna
  *
- * ====================================================== 
+ * ======================================================
  */
 
 #ifndef TABULAR_FUNCS_H
@@ -30,7 +30,7 @@ string const write_attribute(string const & name, T const & t)
 {
        if (tostr(t).empty())
                return string();
-       
+
        string str = " " + name + "=\"" + tostr(t) + "\"";
        return str;
 }
@@ -52,14 +52,14 @@ extern bool string2type(string const str, bool & num);
 extern bool getTokenValue(string const & str, char const * token, string &ret);
 extern bool getTokenValue(string const & str, char const * token, int & num);
 extern bool getTokenValue(string const & str, char const * token,
-                          LyXAlignment & num);
+                         LyXAlignment & num);
 extern bool getTokenValue(string const & str, char const * token,
-                          LyXTabular::VAlignment & num);
+                         LyXTabular::VAlignment & num);
 extern bool getTokenValue(string const & str, char const * token,
-                          LyXTabular::BoxType & num);
+                         LyXTabular::BoxType & num);
 extern bool getTokenValue(string const & str, char const * token, bool & flag);
 extern bool getTokenValue(string const & str, char const * token,
-                          LyXLength & len);
+                         LyXLength & len);
 extern void l_getline(std::istream & is, string & str);
 
 #endif