@@ -108,7 +108,7 @@ void MainWindow::memUpdateEdit(HexWidget *edit, bool force) {
108108
109109void MainWindow::flashGotoPressed () {
110110 if (GotoDialog dlg (m_flashGotoAddr, m_memGotoHistory, this ); dlg.exec () == QDialog::Accepted) {
111- const QString typed = dlg.text ().toUpper (). trimmed ();
111+ const QString typed = dlg.text ().trimmed ();
112112 bool ok = false ;
113113 const QString resolved = resolveAddressOrEquate (typed, &ok);
114114 if (ok) {
@@ -129,7 +129,7 @@ void MainWindow::flashGotoPressed() {
129129void MainWindow::ramGotoPressed () {
130130 GotoDialog dlg (m_RamGotoAddr, m_memGotoHistory, this );
131131 if (dlg.exec () == QDialog::Accepted) {
132- const QString typed = dlg.text ().toUpper (). trimmed ();
132+ const QString typed = dlg.text ().trimmed ();
133133 bool ok = false ;
134134 const QString resolved = resolveAddressOrEquate (typed, &ok);
135135 if (ok) {
@@ -217,7 +217,7 @@ void MainWindow::memGotoEdit(HexWidget *edit) {
217217
218218 GotoDialog dlg (m_memGotoAddr, m_memGotoHistory, this );
219219 if (dlg.exec () == QDialog::Accepted) {
220- QString typed = dlg.text ().toUpper (). trimmed ();
220+ QString typed = dlg.text ().trimmed ();
221221 bool ok = false ;
222222 QString resolved = resolveAddressOrEquate (typed, &ok);
223223 if (ok) {
0 commit comments