Check-in Number:
|
3878 | |
Date: |
2002-Dec-16 10:58:34 (local)
2002-Dec-16 09:58:34 (UTC) |
User: | ms |
Branch: | |
Comment: |
Fine tune before adding conf file location search, and fix a whitespace bug. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/Makefile.in 1.26 -> 1.27
--- 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
|
|
ossp-pkg/as/as-gui/as_assist.cpp 1.68 -> 1.69
--- 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();
|
|
ossp-pkg/as/as-gui/as_const.h 1.23 -> 1.24
--- 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"
|
|
ossp-pkg/as/as-gui/as_dataop.cpp 1.22 -> 1.23
--- 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());
}
}
|
|