mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-24 20:10:50 +00:00
WIP Safe strings handling
This commit is contained in:
@@ -2010,7 +2010,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
if (!oldName.equals(newName)) {
|
||||
|
||||
if (oldName.equals(abcPanel.decompiledTextArea.getScriptLeaf().getClassPath().className)) {
|
||||
scriptName = abcPanel.decompiledTextArea.getScriptLeaf().getClassPath().packageStr.add(newName, "").toPrintableString(true);
|
||||
scriptName = abcPanel.decompiledTextArea.getScriptLeaf().getClassPath().packageStr.add(newName, "").toPrintableString(swf, true);
|
||||
}
|
||||
|
||||
final String fScriptName = scriptName;
|
||||
@@ -2849,7 +2849,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
|
||||
String documentClass = swf.getDocumentClass();
|
||||
if (documentClass != null && currentView != VIEW_DUMP) {
|
||||
String documentClassPrintable = DottedChain.parseNoSuffix(documentClass).toPrintableString(true);
|
||||
String documentClassPrintable = DottedChain.parseNoSuffix(documentClass).toPrintableString(swf, true);
|
||||
List<ABCContainerTag> abcList = swf.getAbcList();
|
||||
if (!abcList.isEmpty()) {
|
||||
ABCPanel abcPanel = getABCPanel();
|
||||
|
||||
Reference in New Issue
Block a user