fpmedit.inc 948 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. $Id$
  3. This file is part of the Free Pascal Integrated Development Environment
  4. Copyright (c) 1998 by Berczi Gabor
  5. Edit menu entries
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. procedure TIDEApp.ShowClipboard;
  13. begin
  14. ClipboardWindow^.Show;
  15. ClipboardWindow^.Focus;
  16. end;
  17. {
  18. $Log$
  19. Revision 1.1 2001-08-04 11:30:23 peter
  20. * ide works now with both compiler versions
  21. Revision 1.1 2000/07/13 09:48:35 michael
  22. + Initial import
  23. Revision 1.1 1998/12/22 14:27:54 peter
  24. * moved
  25. Revision 1.2 1998/12/22 10:39:45 peter
  26. + options are now written/read
  27. + find and replace routines
  28. }