no message
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
package _VisualDVM.Visual.Windows;
|
||||
import Common.Utils.CommonUtils;
|
||||
import Common.Visual.CommonUI;
|
||||
import Common.Utils.Utils_;
|
||||
import Common.Visual.UI_;
|
||||
import Common.Visual.Windows.Form;
|
||||
import _VisualDVM.Current;
|
||||
import Common.Visual.TextField.StyledTextField;
|
||||
@@ -104,8 +104,8 @@ public class SearchReplaceForm extends Form {
|
||||
}
|
||||
}
|
||||
public void applyParams() {
|
||||
String toFind = CommonUtils.hideRegularMetasymbols(tfFind.getText());
|
||||
String toReplace = CommonUtils.hideRegularMetasymbols(tfReplace.getText());
|
||||
String toFind = Utils_.hideRegularMetasymbols(tfFind.getText());
|
||||
String toReplace = Utils_.hideRegularMetasymbols(tfReplace.getText());
|
||||
context.setSearchFor(toFind);
|
||||
context.setMatchCase(registerOn.isSelected());
|
||||
context.setWholeWord(wholeWordOn.isSelected());
|
||||
@@ -148,7 +148,7 @@ public class SearchReplaceForm extends Form {
|
||||
}
|
||||
public void showNoFilesMatches() {
|
||||
lFilesMatchesCount.setText("—");
|
||||
CommonUI.Clear(filesTreePanel);
|
||||
UI_.Clear(filesTreePanel);
|
||||
}
|
||||
public void showFilesMatches() {
|
||||
long total = 0;
|
||||
|
||||
Reference in New Issue
Block a user