Check-in Number:
|
3842 | |
Date: |
2002-Dec-05 11:33:25 (local)
2002-Dec-05 10:33:25 (UTC) |
User: | ms |
Branch: | |
Comment: |
Small fixes, and take UUID generation out of build configuration. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/Makefile.in 1.24 -> 1.25
--- Makefile.in 2002/12/04 18:56:59 1.24
+++ Makefile.in 2002/12/05 10:33:25 1.25
@@ -66,9 +66,9 @@
TARGET_PROGS = as_gui
TARGET_MANS = as_gui.1 as_gui.conf.5
-SRCS = as_main.cpp as_gui.cpp as_assist.cpp as_util.cpp as_slot.cpp as_dataop.cpp as_except.cpp as_generic.cpp as_amount.cpp as_table.cpp as_pref.cpp as_uuidgen.cpp as_version.cpp
+SRCS = as_main.cpp as_gui.cpp as_assist.cpp as_util.cpp as_slot.cpp as_dataop.cpp as_except.cpp as_generic.cpp as_amount.cpp as_table.cpp as_pref.cpp as_version.cpp
-OBJS = as_main.o as_gui.o as_assist.o as_util.o as_slot.o as_dataop.o as_except.o as_generic.o as_amount.o as_table.o as_pref.o as_uuidgen.o as_version.o
+OBJS = as_main.o as_gui.o as_assist.o as_util.o as_slot.o as_dataop.o as_except.o as_generic.o as_amount.o as_table.o as_pref.o as_version.o
GRAFX = gfx/ossplogo.xpm
|
|
ossp-pkg/as/as-gui/TODO 1.31 -> 1.32
--- TODO 2002/12/04 23:22:52 1.31
+++ TODO 2002/12/05 10:33:25 1.32
@@ -33,6 +33,7 @@
Write M4 macro for detecting cuserid, and prefer cuserid in ac_assist when present
Consistently initilize fields when selecting multiple rows
Remove extremely stupid as_uuid logic in favor of built in QUuid class!
+Krass date block data shading keyed to sort function
Beim Editmodus
---------------
|
|
ossp-pkg/as/as-gui/as_assist.cpp 1.48 -> 1.49
--- as_assist.cpp 2002/12/04 17:34:02 1.48
+++ as_assist.cpp 2002/12/05 10:33:25 1.49
@@ -78,7 +78,7 @@
QString Username;
// Start the show by getting the username
-#if defined(Q_WS_WIN)
+#if defined(Q_OS_WIN32)
{
DWORD dwWinusernamesize = sizeof(dwWinusernamesize);
#if defined(UNICODE)
@@ -99,7 +99,7 @@
// Username = QString::fromLocal8Bit(szUser);
Username = QString::fromLocal8Bit(getlogin());
}
-#endif // #if defined(Q_WS_WIN)
+#endif // #if defined(Q_OS_WIN32)
m_pPrefs = new Preferences(TITRAQ_PREFNAME, TITRAQ_APPTITLE, TITRAQ_PREFVER);
if (!m_pPrefs->fileState()) { // No file was found, so assume a null state
|
|