From 8a1fa0efc88ac469688cb3a855871bf7e65256ac Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Mon, 19 Mar 2012 23:51:34 +0000 Subject: [PATCH] Forgotten file in previous commit. --- source/const.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/const.inc b/source/const.inc index 64d39031..059d1626 100644 --- a/source/const.inc +++ b/source/const.inc @@ -14,6 +14,7 @@ const APPNAME = 'HeidiSQL'; APPDOMAIN = 'http://www.heidisql.com/'; REGKEY_SESSIONS = 'Servers\'; + REGKEY_QUERYHISTORY = 'QueryHistory'; // Some unique char, used to separate e.g. selected columns in registry DELIM = '|'; @@ -372,7 +373,8 @@ const HELPERNODE_FUNCTIONS = 1; HELPERNODE_KEYWORDS = 2; HELPERNODE_SNIPPETS = 3; - HELPERNODE_PROFILE = 4; + HELPERNODE_HISTORY = 4; + HELPERNODE_PROFILE = 5; // A set of characters which need not to be quoted IDENTCHARS = ['A'..'Z', 'a'..'z', '0'..'9', '_'];