summaryrefslogtreecommitdiff
path: root/freebsdtvision/lib/editstat.cc
blob: e8c71298af33ac75c0002f950881e3e4bd048f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * editstat.cc
 *
 * Turbo Vision - Version 2.0
 *
 * Copyright (c) 1994 by Borland International
 * All Rights Reserved.
 *
 * Modified by Sergio Sigala <sergio@sigala.it>
 */

#define Uses_TEditor
#define Uses_TEditorDialog
#include <tvision/tv.h>

ushort defEditorDialog( int, ... )
{
    return cmCancel;
}

TEditorDialog TEditor::editorDialog = defEditorDialog;
ushort TEditor::editorFlags = efBackupFiles | efPromptOnReplace;
char TEditor::findStr[maxFindStrLen] = "";
char TEditor::replaceStr[maxReplaceStrLen] = "";
TEditor * TEditor::clipboard = 0;