SQL export: Add popup menu action for copying mysqldump command line

This commit is contained in:
Ansgar Becker
2021-06-25 08:56:18 +02:00
parent ee69a049fd
commit ed28bcbf6f
11 changed files with 158 additions and 55 deletions

View File

@ -383,6 +383,7 @@ type
function SynCompletionProposalPrettyText(ImageIndex: Integer; LeftText, CenterText, RightText: String; LeftColor: TColor=-1; CenterColor: TColor=-1; RightColor: TColor=-1): String;
function PopupComponent(Sender: TObject): TComponent;
function IsWine: Boolean;
function DirSep: Char;
var
AppSettings: TAppSettings;
@ -2932,6 +2933,14 @@ begin
end;
function DirSep: Char;
begin
if IsWine then
Result := '/'
else
Result := '\';
end;
{ Threading stuff }