]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
quick fix for commented out figures
[lyx.git] / src / insets / inseturl.h
index 4fffbcae6d8606afabe5d912a181f7f82d133445..4712afd948e8982e5e8ca1b221589a4033144cb8 100644 (file)
@@ -1,11 +1,11 @@
 // -*- C++ -*-
 /* This file is part of*
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *         Copyright 1997-2001 The LyX Team.
- * 
+ *
  * ====================================================== */
 
 #ifndef INSET_URL_H
@@ -19,7 +19,7 @@
 
 struct LaTeXFeatures;
 
-/** The url inset  
+/** The url inset
  */
 class InsetUrl : public InsetCommand {
 public:
@@ -35,7 +35,7 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       string const getScreenLabel() const;
+       string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
@@ -46,13 +46,13 @@ public:
        bool display() const { return false; }
        ///
        int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+                 bool fragile, bool free_spc) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &) const;
 };
 
 #endif