|
@@ -413,7 +413,6 @@ private:
|
|
|
TPathInCaption FPathInCaption;
|
|
|
TSessionTabNameFormat FSessionTabNameFormat;
|
|
|
bool FMinimizeToTray;
|
|
|
- bool FMinimizeToTrayOnce;
|
|
|
bool FBalloonNotifications;
|
|
|
unsigned int FNotificationsTimeout;
|
|
|
unsigned int FNotificationsStickTime;
|
|
@@ -521,7 +520,6 @@ private:
|
|
|
void __fastcall SetPathInCaption(TPathInCaption value);
|
|
|
void __fastcall SetSessionTabNameFormat(TSessionTabNameFormat value);
|
|
|
void __fastcall SetMinimizeToTray(bool value);
|
|
|
- bool __fastcall GetMinimizeToTray();
|
|
|
void __fastcall SetBalloonNotifications(bool value);
|
|
|
void __fastcall SetNotificationsTimeout(unsigned int value);
|
|
|
void __fastcall SetNotificationsStickTime(unsigned int value);
|
|
@@ -645,7 +643,6 @@ public:
|
|
|
void __fastcall DeleteWorkspaceFromJumpList(UnicodeString Workspace);
|
|
|
void __fastcall UpdateJumpList();
|
|
|
virtual void __fastcall UpdateStaticUsage();
|
|
|
- void __fastcall MinimizeToTrayOnce();
|
|
|
void __fastcall CustomCommandShortCuts(TShortCuts & ShortCuts) const;
|
|
|
UnicodeString __fastcall GetUserExtensionsPath();
|
|
|
UnicodeString __fastcall GetExtensionId(const UnicodeString & ExtensionPath);
|
|
@@ -718,7 +715,7 @@ public:
|
|
|
__property UnicodeString AutoWorkspace = { read = FAutoWorkspace, write = SetAutoWorkspace };
|
|
|
__property TPathInCaption PathInCaption = { read = FPathInCaption, write = SetPathInCaption };
|
|
|
__property TSessionTabNameFormat SessionTabNameFormat = { read = FSessionTabNameFormat, write = FSessionTabNameFormat };
|
|
|
- __property bool MinimizeToTray = { read = GetMinimizeToTray, write = SetMinimizeToTray };
|
|
|
+ __property bool MinimizeToTray = { read = FMinimizeToTray, write = SetMinimizeToTray };
|
|
|
__property bool BalloonNotifications = { read = FBalloonNotifications, write = SetBalloonNotifications };
|
|
|
__property unsigned int NotificationsTimeout = { read = FNotificationsTimeout, write = SetNotificationsTimeout };
|
|
|
__property unsigned int NotificationsStickTime = { read = FNotificationsStickTime, write = SetNotificationsStickTime };
|