Skip to content
Open

A3 #31

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions 1240727.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
commit 26db5deeca0a7f790b585dc86b8b3d1973ee0baf
Author: Matthew Mcwaters <matt.mcwaters@mail.utoronto.ca>
Date: Thu Mar 3 01:09:20 2016 -0500

Finished bug fix

diff --git a/toolkit/components/places/PlacesSearchAutocompleteProvider.jsm b/toolkit/components/places/PlacesSearchAutocompleteProvider.jsm
index e46c1af..4f0c33f 100644
--- a/toolkit/components/places/PlacesSearchAutocompleteProvider.jsm
+++ b/toolkit/components/places/PlacesSearchAutocompleteProvider.jsm
@@ -242,7 +242,7 @@ this.PlacesSearchAutocompleteProvider = Object.freeze({
yield this.ensureInitialized();

return SearchAutocompleteProviderInternal.aliasMatches
- .find(m => m.alias == searchToken);
+ .find(m => m.alias.toUpperCase() == searchToken.toUpperCase());
}),

getDefaultMatch: Task.async(function* () {
Empty file added bootstrap.py
Empty file.
2 changes: 1 addition & 1 deletion browser/app/nsBrowserApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ static int do_main(int argc, char* argv[], nsIFile *xreDirectory)
SetStrongPtr(appData.directory, static_cast<nsIFile*>(appSubdir.get()));
// xreDirectory already has a refcount from NS_NewLocalFile
appData.xreDirectory = xreDirectory;

printf("hello Matthew Mcwaters");
return XRE_main(argc, argv, &appData, mainFlags);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ this.PlacesSearchAutocompleteProvider = Object.freeze({
yield this.ensureInitialized();

return SearchAutocompleteProviderInternal.aliasMatches
.find(m => m.alias == searchToken);
.find(m => m.alias.toUpperCase() == searchToken.toUpperCase());
}),

getDefaultMatch: Task.async(function* () {
Expand Down