mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
SQL export: Add popup menu action for copying mysqldump command line
This commit is contained in:
@ -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 }
|
||||
|
||||
|
Reference in New Issue
Block a user