From ea808784e9b2965fc2d9a4c471b987fb62e265ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 24 Feb 2013 17:13:19 +0100 Subject: Fix unintended rename of link* --- kommander/examples/current/editor-poc.kmdr | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/kommander/examples/current/editor-poc.kmdr b/kommander/examples/current/editor-poc.kmdr index 18d8168e..2bc9febf 100755 --- a/kommander/examples/current/editor-poc.kmdr +++ b/kommander/examples/current/editor-poc.kmdr @@ -181,8 +181,8 @@ while chrs < maxc do inlink = true lb = str_toint(str_find(a, "\"", ch)+1) le = str_toint(str_find(a, "\"", lb)) - lintdescript = str_mid(a, lb, le-lb) - //debug("link data - "+lb+" "+le+" "+lintdescript) + linkscript = str_mid(a, lb, le-lb) + //debug("link data - "+lb+" "+le+" "+linkscript) elseif str_mid(a, ch, 3) == "<p>" then lc = lc + 1 cc = 0 @@ -199,11 +199,11 @@ while chrs < maxc do if inlink == true then //debug("examining link at row"+lc+" between col "+cp+" and col "+cc) if (Self.Item(0) == lc &&Self.Item(1) >= cp && Self.Item(1) <= cc) then - debug("call "+lintdescript) - if widgetExists(lintdescript) then - lintdescript.execute(Self.Item(0),Self.Item(1)) - elseif str_left(lintdescript, 4) == "http" then - exec("konqueror --profile webbrowsing "+lintdescript) + debug("call "+linkscript) + if widgetExists(linkscript) then + linkscript.execute(Self.Item(0),Self.Item(1)) + elseif str_left(linkscript, 4) == "http" then + exec("konqueror --profile webbrowsing "+linkscript) endif break endif -- cgit v1.2.3