fpmedit.inc 706 B

12345678910111213141516171819202122232425262728
  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.2 2002-09-07 15:40:43 peter
  20. * old logs removed and tabs fixed
  21. }