Fixed #rmq problem in Stylesheets

This commit is contained in:
Todd Werth
2013-09-10 10:15:59 -07:00
parent 53ad7f170a
commit 5b89749cb1

View File

@@ -130,10 +130,10 @@ module RubyMotionQuery
# Convenience methods -------------------
def rmq
if @controller
@controller.rmq
if @controller.nil?
RMQ.new
else
RMQ
@controller.rmq
end
end