1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00

Make some fields private

This commit is contained in:
Tae Won Ha 2017-02-26 11:00:52 +01:00
parent 863a6458a2
commit f72981ca10
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ import PureLayout
import Sparkle
/// Keep the rawValues in sync with Action in the `vimr` Python script.
private enum VimRUrlAction: String {
fileprivate enum VimRUrlAction: String {
case activate = "activate"
case open = "open"
case newWindow = "open-in-new-window"

View File

@ -14,9 +14,6 @@ class FileOutlineView: NSOutlineView,
typealias StateType = MainWindow.State
var cwd: URL = FileUtils.userHomeUrl
var isShowHidden: Bool
required init(source: Observable<StateType>, emitter: ActionEmitter, state: StateType) {
self.emitter = emitter
@ -115,6 +112,9 @@ class FileOutlineView: NSOutlineView,
fileprivate let uuid: String
fileprivate var lastFileSystemUpdateMark = Token()
fileprivate var cwd: URL = FileUtils.userHomeUrl
fileprivate var isShowHidden: Bool
fileprivate var root: FileBrowserItem
fileprivate let fileSystemRoot: FileItem