Skip to content

Commit

Permalink
fixing few more module references
Browse files Browse the repository at this point in the history
  • Loading branch information
soumith committed Feb 2, 2016
1 parent 8ec8ef1 commit c077ce7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/qtide/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ end
qt.disconnect(qluaide, 'helpRequested(QWidget*)')
qt.connect(qluaide,'helpRequested(QWidget*)',
function(main)
local success, message = pcall(help)
local success, message = pcall(qtide.help)
if not success and type(message) == "string" then
qluaide:messageBox("QLua Warning", message)
end
Expand All @@ -198,7 +198,7 @@ end
qt.disconnect(qluaide,'prefsRequested(QWidget*)')
qt.connect(qluaide,'prefsRequested(QWidget*)',
function(main)
local success, message = pcall(preferences)
local success, message = pcall(qtide.preferences)
if not success and type(message) == "string" then
qluaide:messageBox("QLua Warning", message)
end
Expand Down

0 comments on commit c077ce7

Please sign in to comment.