Index: ossp-pkg/as/as-gui/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/Makefile.in,v rcsdiff -q -kk '-r1.26' '-r1.27' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/Makefile.in,v' 2>/dev/null --- Makefile.in 2002/12/12 18:48:16 1.26 +++ Makefile.in 2002/12/16 09:58:34 1.27 @@ -138,7 +138,7 @@ clean: $(RM) $(TARGET_PROGS) $(OBJS) $(MOC_OBJ) $(RM) as_gui.conf.5 as_gui.1 - $(RM) as_gui_pcre.tab *.core + $(RM) as_gui.conf as_gui_pcre.tab *.core distclean: clean $(RM) config.log config.status config.cache # Generated by ./configure Index: ossp-pkg/as/as-gui/as_assist.cpp RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_assist.cpp,v rcsdiff -q -kk '-r1.68' '-r1.69' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_assist.cpp,v' 2>/dev/null --- as_assist.cpp 2002/12/13 23:42:37 1.68 +++ as_assist.cpp 2002/12/16 09:58:34 1.69 @@ -118,7 +118,7 @@ m_pPrefs->setString(TITRAQ_PREFLOCALLOG, TITRAQ_DEFLOCALLOG); m_pPrefs->flush(); // Write the new conf file QTextStream cerr(stderr, IO_WriteOnly); - cerr << trUtf8("Created new preferences file ") << trUtf8(TITRAQ_PREFNAME) << endl; + cerr << trUtf8("Created new preferences file ./") << trUtf8(TITRAQ_PREFNAME) << endl; } // Use the preferred configuration values to initialize titraq @@ -493,7 +493,7 @@ m_pMaintable->horizontalHeader()->setClickEnabled(true); // Allow click signals m_pMaintable->horizontalHeader()->setTracking(false); // No continuous tracking m_pMaintable->setColumnStretchable(TITRAQ_IDXTAIL - 1, true); - m_pMaintable->setSorting(true); + m_pMaintable->setSorting(false); // Table header row m_pTablehead = m_pMaintable->horizontalHeader(); Index: ossp-pkg/as/as-gui/as_const.h RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_const.h,v rcsdiff -q -kk '-r1.23' '-r1.24' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_const.h,v' 2>/dev/null --- as_const.h 2002/12/12 21:13:29 1.23 +++ as_const.h 2002/12/16 09:58:34 1.24 @@ -53,7 +53,7 @@ #define TITRAQ_PREFSTATCOLON "statcolshow" #define TITRAQ_DEFSTATCOLON true #define TITRAQ_PREFLCOLON "linecolshow" -#define TITRAQ_DEFLCOLON true +#define TITRAQ_DEFLCOLON false #define TITRAQ_PREFUCOLON "usercolshow" #define TITRAQ_DEFUCOLON false #define TITRAQ_PREFGCOLON "guidcolshow" Index: ossp-pkg/as/as-gui/as_dataop.cpp RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_dataop.cpp,v rcsdiff -q -kk '-r1.22' '-r1.23' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_dataop.cpp,v' 2>/dev/null --- as_dataop.cpp 2002/12/13 23:42:37 1.22 +++ as_dataop.cpp 2002/12/16 09:58:34 1.23 @@ -350,8 +350,7 @@ m_pMaintable->setItem(nCurrentrow + nIter, TITRAQ_IDXTASK, new RtTableItem(m_pMaintable, QTableItem::WhenCurrent, Task)); // Continue with field processing business as usual - Remark.simplifyWhiteSpace(); // First get rid of and simplify whitespace - m_pMaintable->setText(nCurrentrow + nIter, TITRAQ_IDXREMARK, Remark); + m_pMaintable->setText(nCurrentrow + nIter, TITRAQ_IDXREMARK, Remark.simplifyWhiteSpace()); } }