опечатка в имени функции

This commit is contained in:
2025-02-28 16:18:37 +03:00
parent d7ea2f862e
commit c551fdd2c9
5 changed files with 15 additions and 17 deletions

7
.idea/workspace.xml generated
View File

@@ -7,13 +7,8 @@
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment=""> <list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/properties" beforeDir="false" afterPath="$PROJECT_DIR$/properties" afterDir="false" /> <change beforePath="$PROJECT_DIR$/properties" beforeDir="false" afterPath="$PROJECT_DIR$/properties" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/ComponentsServer/ComponentsServer.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/ComponentsServer/ComponentsServer.java" afterDir="false" /> <change beforePath="$PROJECT_DIR$/src/_VisualDVM/Visual/Windows/MainForm.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Visual/Windows/MainForm.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/CreateTestFromDirectory.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/CreateTestFromDirectory.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/CreateTestFromProject.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/CreateTestFromProject.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/CreateTestsGroupFromSelectedVersions.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/CreateTestsGroupFromSelectedVersions.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/TestingSystem/Common/Test/UI/TestDialog.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/TestingSystem/Common/Test/UI/TestDialog.java" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />

View File

@@ -1,9 +1,9 @@
{ {
"Email": "vmk-post@yandex.ru", "Email": "nataliku2@yandex.ru",
"Name": "M", "Name": "Test",
"ServerUserPassword": "mprit_2011", "ServerUserPassword": "mprit_2011",
"Workspace": "E:\\Tests", "Workspace": "E:\\Tests",
"ProjectsSearchDirectory": "E:\\Tests\\Downloads", "ProjectsSearchDirectory": "E:\\Tests",
"VisualiserPath": "C:\\Users\\misha\\Downloads", "VisualiserPath": "C:\\Users\\misha\\Downloads",
"Sapfor_FPath": "E:\\_sapfor_x64\\Components\\Sapfor_F", "Sapfor_FPath": "E:\\_sapfor_x64\\Components\\Sapfor_F",
"Visualizer_2Path": "C:\\Users\\misha\\Documents", "Visualizer_2Path": "C:\\Users\\misha\\Documents",
@@ -15,8 +15,8 @@
"ShowPassesDone": true, "ShowPassesDone": true,
"FocusPassesResult": true, "FocusPassesResult": true,
"collapseCredentials": true, "collapseCredentials": true,
"collapseFileGraphs": true, "collapseFileGraphs": false,
"collapseFileMessages": true, "collapseFileMessages": false,
"collapseProjectTrees": false, "collapseProjectTrees": false,
"EditorFontSize": 17, "EditorFontSize": 17,
"ComponentsWindowWidth": 929, "ComponentsWindowWidth": 929,
@@ -26,9 +26,9 @@
"CheckTestingIntervalSeconds": 10, "CheckTestingIntervalSeconds": 10,
"AutoCheckTesting": true, "AutoCheckTesting": true,
"EmailOnTestingProgress": true, "EmailOnTestingProgress": true,
"lastMachineId": 7, "lastMachineId": 28,
"lastUserId": -1, "lastUserId": 36,
"lastCompilerId": -1, "lastCompilerId": 109,
"RegisterOn": false, "RegisterOn": false,
"SpacesOn": false, "SpacesOn": false,
"EmptyLinesOn": false, "EmptyLinesOn": false,

View File

@@ -21,7 +21,7 @@ public interface CallbackWindow extends VisualizerForm {
void ClearBugReportCommentAdditionText(); void ClearBugReportCommentAdditionText();
void FocusRecipients(); void FocusRecipients();
void SwitchScreen(boolean small); void SwitchScreen(boolean small);
void setUdefinedRights(); void setUndefinedRights();
void setUserRights(); void setUserRights();
void setAdminRights(); void setAdminRights();
} }

View File

@@ -99,4 +99,7 @@ public class MainUI extends UIModule_ {
profilesWindow = new ProfilesForm(); profilesWindow = new ProfilesForm();
return profilesWindow; return profilesWindow;
} }
//---
} }

View File

@@ -363,7 +363,7 @@ public class CallbackForm implements FormWithSplitters, CallbackWindow {
accountPanel.add(SC10); accountPanel.add(SC10);
} }
@Override @Override
public void setUdefinedRights(){ public void setUndefinedRights(){
Global.mainModule.SetUserPassesAccess(); Global.mainModule.SetUserPassesAccess();
UI.Clear(accountPanel); UI.Clear(accountPanel);
accountPanel.add(new CallbackWelcomeForm().content); accountPanel.add(new CallbackWelcomeForm().content);
@@ -409,7 +409,7 @@ public class CallbackForm implements FormWithSplitters, CallbackWindow {
lAccountRole.setText(Utils_.Brackets(Global.mainModule.getAccount().role.getDescription())); lAccountRole.setText(Utils_.Brackets(Global.mainModule.getAccount().role.getDescription()));
switch (Global.mainModule.getAccount().role) { switch (Global.mainModule.getAccount().role) {
case Undefined: case Undefined:
setUdefinedRights(); setUndefinedRights();
break; break;
case User: case User:
//видит только свои баги. //видит только свои баги.