Change Constants class visibility to internal

This commit is contained in:
Jeremy Wu 2020-05-28 07:41:41 +10:00
parent b5e9ec3a9f
commit 03bcef56e2

View file

@ -1,16 +1,18 @@
using System;
using System;
using System.Collections.Generic;
using System.Text;
namespace Flow.Launcher.Plugin.Explorer.Search
{
public static class Constants
internal static class Constants
{
public const string FolderImagePath = "Images\\folder.png";
public const string FileImagePath = "Images\\file.png";
public const string DeleteFileFolderImagePath = "Images\\deletefilefolder.png";
public const string CopyImagePath = "Images\\copy.png";
public const string IndexImagePath = "Images\\index.png";
internal const string FolderImagePath = "Images\\folder.png";
internal const string FileImagePath = "Images\\file.png";
internal const string DeleteFileFolderImagePath = "Images\\deletefilefolder.png";
internal const string CopyImagePath = "Images\\copy.png";
internal const string IndexImagePath = "Images\\index.png";
internal const string DefaultFolderSubtitleString = "Ctrl + Enter to open the directory";
internal static readonly char[] SpecialSearchChars = new char[]
{