1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
return selector
end
-- Any code added here will affect derived classes
end
-- Should be overridden
end
return ( CAMPAIGN_SELECTOR_FRAGMENT : IsShowing ( ) and self . selectedQueryType == BGQUERY_ASSIGNED_CAMPAIGN )
end
if ( self . selectedQueryType == BGQUERY_LOCAL ) then
elseif ( self . selectedQueryType == BGQUERY_ASSIGNED_CAMPAIGN ) then
end
end
return self . selectedQueryType
end
end
end
--Events
if ( self . selectedQueryType == BGQUERY_LOCAL ) then
end
end
if ( self . selectedQueryType == BGQUERY_ASSIGNED_CAMPAIGN ) then
end
end |