We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e3314b commit 276f131Copy full SHA for 276f131
src/ParenCell.cpp
@@ -389,6 +389,9 @@ void ParenCell::Draw(wxPoint point)
389
wxString ParenCell::ToString()
390
{
391
wxString s;
392
+ if(!m_innerCell)
393
+ return "()";
394
+
395
if (!m_isBrokenIntoLines)
396
397
if (m_print)
src/main.cpp
@@ -194,7 +194,7 @@ bool MyApp::OnInit()
194
195
std::cout << "A feature-rich graphical user interface for the computer algebra system maxima\n";
196
std::cout << cmdLineParser.GetUsageString();
197
- exit(wxMaxima::m_exitCode);
+ exit(0);
198
}
199
200
if(cmdLineError != 0)
0 commit comments