]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlookup.h
fix typo that put too many include paths for most people
[lyx.git] / src / lyxlookup.h
index dbe6a40318a0cfcbb1d7e7c4aefdd93f4f484899..7eadbdf7b3340151efd4e53abe77ec526be08476 100644 (file)
@@ -1,10 +1,10 @@
 /* This file is part of                   -*- C++ -*-
-* ====================================================== 
-* 
+* ======================================================
+*
 *           LyX, The Document Processor
-*       
-*           Copyright 1995 Matthias Ettrich 
-*           Copyright 1995-2000 The LyX Team.
+*
+*           Copyright 1995 Matthias Ettrich
+*           Copyright 1995-2001 The LyX Team.
 *
 * ====================================================== */
 
    functions. This should probably be moved into LyXView (to have
    different input methods for different frames, but for now we can
    keep it as it is. */
+#ifndef LYXLOOKUP_H
+#define LYXLOOKUP_H
 
-#include <config.h>
-#include FORMS_H_LOCATION
-#if FL_REVISION < 89
-//#include <X11/Xlib.h>
+#include <X11/Xlib.h>
 
 /// Initialize the compose key handling
-extern void InitLyXLookup(Display *, Window ) ;
+extern void InitLyXLookup(Display *, Window);
 
 /// Read a keysym and/or a string (like XLookupString)
-extern int LyXLookupString(XEvent * event,    
+extern int LyXLookupString(XEvent * event,
                           char * buffer_return, int bytes_buffer,
                           KeySym * keysym_return);
 
 /// Call this when you destroy your window
 extern void CloseLyXLookup();
+
 #endif