~trb143/openlp/release7c

« back to all changes in this revision

Viewing changes to app/src/main/java/org/openlp/android2/fragments/service/ServiceListFragment.kt

  • Committer: Tim Bentley
  • Date: 2018-02-10 12:31:28 UTC
  • Revision ID: tim.bentley@gmail.com-20180210123128-7btcmfskb9awzigb
Add next previous

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
                getServiceList(OpenLPApp.instance!!.applicationContext)
67
67
            }
68
68
        }, IntentFilter(Constants.REQUEST_REFRESH))
69
 
 
70
 
        localBroadcastManager.registerReceiver(object : BroadcastReceiver() {
71
 
            override fun onReceive(context: Context, intent: Intent) {
72
 
                //handleSomethingHappened()
73
 
            }
74
 
        }, IntentFilter(Constants.REQUEST_NEXT))
75
 
 
76
 
        localBroadcastManager.registerReceiver(object : BroadcastReceiver() {
77
 
            override fun onReceive(context: Context, intent: Intent) {
78
 
                // handleSomethingHappened()
79
 
            }
80
 
        }, IntentFilter(Constants.REQUEST_PREVIOUS))
81
69
        return rootView
82
70
    }
83
71