Summary: | unitialized attribute in quanta.cpp show weird column and line number | ||
---|---|---|---|
Product: | [Unmaintained] quanta | Reporter: | Yan Morin <yansanmo.site> |
Component: | general | Assignee: | András Manţia <amantia> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Yan Morin
2005-08-10 08:19:33 UTC
SVN commit 444480 by amantia: Initialize variables. Patch by Yan Morin. Don't you want to join our developer list? ;-) BUG:110498 M +3 -3 quanta.kdevelop M +2 -0 src/quanta.cpp --- branches/KDE/3.5/kdewebdev/quanta/quanta.kdevelop #444479:444480 @@ -168,7 +168,7 @@ </groups> <tree> <hidenonprojectfiles>false</hidenonprojectfiles> - <hidepatterns></hidepatterns> + <hidepatterns/> <showvcsfields>true</showvcsfields> </tree> </kdevfileview> @@ -243,10 +243,10 @@ </kdevcvs> <kdevfilecreate> <filetypes> - <type icon="" ext="h" create="template" name="C++ header" > + <type icon="" ext="h" name="C++ header" create="template" > <descr>Quanta speicfic header</descr> </type> - <type icon="source_cpp" ext="cpp" create="template" name="C++ source" > + <type icon="source_cpp" ext="cpp" name="C++ source" create="template" > <descr>A new empty C++ file.</descr> </type> </filetypes> --- branches/KDE/3.5/kdewebdev/quanta/src/quanta.cpp #444479:444480 @@ -253,6 +253,8 @@ m_newDocStuff = 0L; m_debugger = 0L; m_parserEnabled = true; + cursorLine = 0; + cursorCol = 0; emit eventHappened("quanta_start", QDateTime::currentDateTime().toString(Qt::ISODate), QString::null); } |