make some variables in ChangeSortingDialog private
This commit is contained in:
parent
234b2ed933
commit
9272fbc3a3
|
@ -16,15 +16,11 @@ import kotlinx.android.synthetic.main.dialog_change_sorting.view.*
|
|||
class ChangeSortingDialog(val activity: SimpleActivity, val isDirectorySorting: Boolean, showFolderCheckbox: Boolean,
|
||||
val path: String = "", val callback: () -> Unit) :
|
||||
DialogInterface.OnClickListener {
|
||||
companion object {
|
||||
private var currSorting = 0
|
||||
|
||||
lateinit var config: Config
|
||||
lateinit var view: View
|
||||
}
|
||||
private var config: Config = activity.config
|
||||
private var view: View
|
||||
|
||||
init {
|
||||
config = activity.config
|
||||
view = LayoutInflater.from(activity).inflate(R.layout.dialog_change_sorting, null).apply {
|
||||
use_for_this_folder_divider.beVisibleIf(showFolderCheckbox)
|
||||
sorting_dialog_use_for_this_folder.beVisibleIf(showFolderCheckbox)
|
||||
|
|
Loading…
Reference in New Issue