home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tv20os2.zip / src / editstat.cpp < prev    next >
C/C++ Source or Header  |  1998-01-19  |  565b  |  26 lines

  1. /*
  2.  * editstat.cc
  3.  *
  4.  * Turbo Vision - Version 2.0
  5.  *
  6.  * Copyright (c) 1994 by Borland International
  7.  * All Rights Reserved.
  8.  *
  9.  * Modified by Sergio Sigala <ssigala@globalnet.it>
  10.  */
  11.  
  12. #define Uses_TEditor
  13. #define Uses_TEditorDialog
  14. #include <tvision/tv.h>
  15.  
  16. ushort defEditorDialog( int, ... )
  17. {
  18.     return cmCancel;
  19. }
  20.  
  21. TEditorDialog TEditor::editorDialog = defEditorDialog;
  22. ushort TEditor::editorFlags = efBackupFiles | efPromptOnReplace;
  23. char TEditor::findStr[maxFindStrLen] = "";
  24. char TEditor::replaceStr[maxReplaceStrLen] = "";
  25. TEditor * TEditor::clipboard = 0;
  26.