[brailleblaster] push by rebecca....@xxxxxxxxx - resolved and ready to merge on 2015-02-19 18:45 GMT

  • From: brailleblaster@xxxxxxxxxxxxxx
  • To: brailleblaster@xxxxxxxxxxxxx
  • Date: Thu, 19 Feb 2015 18:45:39 +0000

Revision: 7ba2d3e8940f
Branch:   rt1898-firstWord
Author:   Rebecca Luttmer <rebecca.luttmer@xxxxxxxxx>
Date:     Thu Feb 19 18:45:00 2015 UTC
Log:      resolved and ready to merge
https://code.google.com/p/brailleblaster/source/detail?r=7ba2d3e8940f

Modified:
 /src/main/org/brailleblaster/search/SearchDialog.java

=======================================
--- /src/main/org/brailleblaster/search/SearchDialog.java Fri Feb 13 21:05:09 2015 UTC +++ /src/main/org/brailleblaster/search/SearchDialog.java Thu Feb 19 18:45:00 2015 UTC
@@ -167,7 +167,7 @@
                // searches but within the
                // same session
                shlFindreplace = new Shell(getParent(), SWT.DIALOG_TRIM);
-               // setPanelSize();
+               setPanelSize();

                shlFindreplace.setText("Find/Replace");
                shlFindreplace.setVisible(true);
@@ -598,7 +598,7 @@
        private void createContents() {

                shlFindreplace = new Shell(getParent(), SWT.DIALOG_TRIM);
-               // setPanelSize();
+               setPanelSize();
                shlFindreplace.setText("Find/Replace");
                shlFindreplace.setVisible(true);

@@ -1881,7 +1881,7 @@

                // tests to see if the user has used the find button and has 
selected
                // text that they want to replace
-               if (foundStr.equals(findMeStr)) {
+               if (findMeStr.toLowerCase().contains(foundStr.toLowerCase())) {
                        return true;
                }// if text selected

@@ -2011,7 +2011,7 @@

                // tests to see if the user has used the find button and has 
selected
                // text that they want to replace
-               if (foundStr.equals(findMeStr)) {
+               if (findMeStr.toLowerCase().contains(foundStr.toLowerCase())) {
                        return true;
                }// if text selected

@@ -2102,7 +2102,7 @@

                // tests to see if the user has used the find button and has 
selected
                // text that they want to replace
-               if (foundStr.equals(findMeStr)) {
+               if (findMeStr.toLowerCase().contains(foundStr.toLowerCase())) {
                        return true;
                }// if text selected

@@ -2239,7 +2239,7 @@

                // tests to see if the user has used the find button and has 
selected
                // text that they want to replace
-               if (foundStr.equals(findMeStr)) {
+               if (findMeStr.toLowerCase().contains(foundStr.toLowerCase())) {
                        return true;
                }// if text selected


Other related posts:

  • » [brailleblaster] push by rebecca....@xxxxxxxxx - resolved and ready to merge on 2015-02-19 18:45 GMT - brailleblaster