mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-20 15:49:22 +02:00
* cmCopyWin and cmPasteWin defined only once
git-svn-id: trunk@811 -
This commit is contained in:
parent
2f8fe7d2e6
commit
bffed7b938
@ -182,8 +182,10 @@ const
|
|||||||
cmUntilReturn = 239;
|
cmUntilReturn = 239;
|
||||||
{ WARNING these two are also defined in weditor.pas PM }
|
{ WARNING these two are also defined in weditor.pas PM }
|
||||||
{ and why aren't these defines then removed? Gabor }
|
{ and why aren't these defines then removed? Gabor }
|
||||||
|
{ commented out, now in wviews.pas FK
|
||||||
cmCopyWin = 240;
|
cmCopyWin = 240;
|
||||||
cmPasteWin = 241;
|
cmPasteWin = 241;
|
||||||
|
}
|
||||||
cmRegisters = 242;
|
cmRegisters = 242;
|
||||||
cmFPURegisters = 243;
|
cmFPURegisters = 243;
|
||||||
cmDoReload = 244;
|
cmDoReload = 244;
|
||||||
|
@ -21,7 +21,7 @@ interface
|
|||||||
uses
|
uses
|
||||||
Dos,Objects,Drivers,Views,Dialogs,Menus,
|
Dos,Objects,Drivers,Views,Dialogs,Menus,
|
||||||
FVConsts,
|
FVConsts,
|
||||||
WUtils;
|
WUtils,WViews;
|
||||||
|
|
||||||
const
|
const
|
||||||
cmFileNameChanged = 51234;
|
cmFileNameChanged = 51234;
|
||||||
@ -712,10 +712,6 @@ type
|
|||||||
|
|
||||||
|
|
||||||
const
|
const
|
||||||
|
|
||||||
cmCopyWin = 240;
|
|
||||||
cmPasteWin = 241;
|
|
||||||
|
|
||||||
{ used for ShiftDel and ShiftIns to avoid
|
{ used for ShiftDel and ShiftIns to avoid
|
||||||
GetShiftState to be considered for extending
|
GetShiftState to be considered for extending
|
||||||
selection (PM) }
|
selection (PM) }
|
||||||
@ -766,7 +762,7 @@ uses
|
|||||||
{$ifdef TEST_REGEXP}
|
{$ifdef TEST_REGEXP}
|
||||||
regexpr,
|
regexpr,
|
||||||
{$endif TEST_REGEXP}
|
{$endif TEST_REGEXP}
|
||||||
WConsts,WViews,WCEdit;
|
WConsts,WCEdit;
|
||||||
|
|
||||||
type
|
type
|
||||||
RecordWord = sw_word;
|
RecordWord = sw_word;
|
||||||
|
@ -20,6 +20,9 @@ uses Objects,Drivers,Views,Menus,Dialogs;
|
|||||||
const
|
const
|
||||||
evIdle = $8000;
|
evIdle = $8000;
|
||||||
|
|
||||||
|
cmCopyWin = 240;
|
||||||
|
cmPasteWin = 241;
|
||||||
|
|
||||||
cmLocalMenu = 54100;
|
cmLocalMenu = 54100;
|
||||||
cmUpdate = 54101;
|
cmUpdate = 54101;
|
||||||
cmListFocusChanged = 54102;
|
cmListFocusChanged = 54102;
|
||||||
|
Loading…
Reference in New Issue
Block a user