diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Windows/Environment.hs (renamed from src/Environment.hs) | 6 | ||||
-rw-r--r-- | src/Windows/Registry.hs (renamed from src/Registry.hs) | 2 | ||||
-rw-r--r-- | src/Windows/Utils.hs (renamed from src/WindowsUtils.hs) | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/Environment.hs b/src/Windows/Environment.hs index f370de4..2bea481 100644 --- a/src/Environment.hs +++ b/src/Windows/Environment.hs @@ -4,7 +4,7 @@ - See LICENSE.txt for details. -} -module Environment +module Windows.Environment ( Profile(..) , profileKeyPath @@ -22,8 +22,8 @@ import Data.List (intercalate) import Data.List.Split (splitOn) import System.IO.Error (catchIOError, isDoesNotExistError) -import qualified Registry -import WindowsUtils (notifyEnvironmentUpdate) +import qualified Windows.Registry as Registry +import Windows.Utils (notifyEnvironmentUpdate) data Profile = CurrentUser | AllUsers diff --git a/src/Registry.hs b/src/Windows/Registry.hs index 48d69f0..528027f 100644 --- a/src/Registry.hs +++ b/src/Windows/Registry.hs @@ -4,7 +4,7 @@ - See LICENSE.txt for details. -} -module Registry +module Windows.Registry ( KeyPath , keyPathFromString , keyPathJoin diff --git a/src/WindowsUtils.hs b/src/Windows/Utils.hs index 6fa1f0e..aad241f 100644 --- a/src/WindowsUtils.hs +++ b/src/Windows/Utils.hs @@ -4,7 +4,7 @@ - See LICENSE.txt for details. -} -module WindowsUtils +module Windows.Utils ( notifyEnvironmentUpdate ) where |