Skip to content

Commit

Permalink
Minor shell integration typos
Browse files Browse the repository at this point in the history
all in comments or other places that have no effect on the user.
  • Loading branch information
Phil Davis committed Sep 10, 2015
1 parent c0f8ff1 commit bae552f
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions shell_integration/MacOSX/OwnCloudFinder/ContentManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ - (void)reFetchFileNameCacheForPath:(NSString*)path
{
//NSLog(@"%@", NSStringFromSelector(_cmd));

// We won't request the new state if if finds the path in _fileNamesCache
// Move all entries to _oldFileNamesCache so that the get re-requested, but
// We won't request the new state if it finds the path in _fileNamesCache
// Move all entries to _oldFileNamesCache so that they get re-requested, but
// still available while we refill the cache
[_oldFileNamesCache addEntriesFromDictionary:_fileNamesCache];
[_fileNamesCache removeAllObjects];
Expand Down
4 changes: 2 additions & 2 deletions shell_integration/MacOSX/OwnCloudFinder/RequestManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ - (void)connectionDidDie
{
// NSLog(@"Socket DISconnected! %@", [err localizedDescription]);

// clear the registered pathes.
// clear the registered paths.
_registeredPathes = [[NSMutableDictionary alloc] init];
[_requestedPaths removeAllObjects];

// clear the caches in conent manager
// clear the caches in content manager
OwnCloudFinderContentManager *contentman = [OwnCloudFinderContentManager sharedInstance];
[contentman clearFileNameCache];
[contentman repaintAllWindows];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

EXPORT OSErr HandleLoadEvent(const AppleEvent* ev, AppleEvent* reply, long refcon);

static NSString* globalLock = @"I'm the global lock to prevent concruent handler executions";
static NSString* globalLock = @"I'm the global lock to prevent concurrent handler executions";

// SIMBL-compatible interface
@interface OwnCloudShell : NSObject { }
Expand Down
2 changes: 1 addition & 1 deletion shell_integration/MacOSX/common/SyncClientProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ - (void)registerTransmitter:(id)tx;
_remoteEnd = (NSDistantObject <ChannelProtocol> *)tx;
[_remoteEnd setProtocolForProxy:@protocol(ChannelProtocol)];

// Everything is set up, start querrying
// Everything is set up, start querying
[self askOnSocket:@"" query:@"SHARE_MENU_TITLE"];
}

Expand Down
4 changes: 2 additions & 2 deletions shell_integration/dolphin/README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


- The patch 0001-KOverlayIconPlugin.patch should be applied to kde-baseapps git repository
(It should applies to both KDE/4.14 or Applications/14.12 branches)
(It should apply to both KDE/4.14 or Applications/14.12 branches)

- Recompile and install dolphin

Expand All @@ -10,7 +10,7 @@
- After installing, run
kdeinit4 --noincremental

- To test taht the plugin is well installed
- To test that the plugin is well installed
ktraderclient --servicetype KOverlayIconPlugin
It should show the Owncloud plugin

Expand Down
2 changes: 1 addition & 1 deletion shell_integration/dolphin_kf5/README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


- The patch 0001-KOverlayIconPlugin.patch should be applied to kde-baseapps git repository
(It should applies to frameworks branch)
(It should apply to frameworks branch)

- Recompile and install dolphin (frameworks branch)

Expand Down
2 changes: 1 addition & 1 deletion shell_integration/nautilus/syncstate.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def invalidate_items_underneath(self, path):
for item in update_items:
item.invalidate_extension_info()

# Handles a single line of server respoonse and sets the emblem
# Handles a single line of server response and sets the emblem
def handle_commands(self, action, args):
Emblems = { 'OK' : appname +'_ok',
'SYNC' : appname +'_sync',
Expand Down
2 changes: 1 addition & 1 deletion shell_integration/windows/OCOverlays/OverlayConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#define OVERLAY_GENERIC_NAME L"OC Overlay Handler"

// two spaces to put us a head of the competition :/
// two spaces to put us ahead of the competition :/
#define OVERLAY_NAME_ERROR L" OCError"
#define OVERLAY_NAME_ERROR_SHARED L" OCErrorShared"
#define OVERLAY_NAME_OK L" OCOK"
Expand Down

0 comments on commit bae552f

Please sign in to comment.