Commit Graph

2129 Commits

Author SHA1 Message Date
MOZGIII
5b5c5dc71c Added README.md 2015-09-25 21:28:17 +03:00
MOZGIII
38127fffef Added example 2015-09-25 21:11:37 +03:00
MOZGIII
7ab3b98a5c Added .pri file 2015-09-25 21:11:25 +03:00
MOZGIII
aa0383dd4b Removing unneeded stuff 2015-09-25 21:10:48 +03:00
Adam Higerd
696423b689 QxtHttpSessionManager: handle broken connections better 2014-10-06 23:10:05 -07:00
Adam Higerd
4b393e7318 downgrade error to warning for null sender in QxtMetaObject 2014-10-06 23:09:21 -07:00
Adam Higerd
4bde76579b fix stringification of string lists in QxtJSON 2014-10-06 23:09:04 -07:00
Adam Higerd
3e7424f842 QxtPointerList: fix name resolution for removeAll 2014-02-16 00:03:49 -08:00
Arvid Picciani
a6e35c34dd Merged in israelins85/libqxt/MACOS_QT5_FIXES (pull request #46)
MacOs: compilation faults
2014-02-14 19:26:54 +01:00
Israel Lins Albuquerque
51ee678a81 MacOs: compilation faults
- replacing Q_WS_MAC => Q_OS_MAC
  - incomplete migration to Qt5
2014-02-14 15:09:25 -03:00
Arvid Picciani
7a4998fe23 Merged in 0xd34df00d/libqxt (pull request #41)
Invoke previous event filters if they were set.
2014-02-12 23:17:32 +01:00
0xd34df00d
ebcd5f12dd Invoke previous event filters if they were set. 2013-11-22 17:22:32 +04:00
Arvid Picciani
9068e83def Merged in rion4ik/libqxt (pull request #38)
Two new options for QxtMailMessage: word wrap limit and preserve start spaces
2013-10-23 12:38:31 +02:00
rion
70c2c0f7a2 Two new options for QxtMailMessage: word wrap limit and preserve start spaces
word wrap limit sets maximum line length before it will be wrapped to next line.
default is 78 but for some clients it may be less (ex: thunderbird).
so if you are going to generate *.eml setWordWrapLimit will be helpful.

preserve start spaces controls start of wrapped line.
so if your very long line starts with 4 spaces then wrapped part will start
also with 4 spaces 0 if this feature is disabled.
2013-10-21 11:34:19 +06:00
Arvid Picciani
17260325d7 Merged in jonesmz/libqxt/qxtsmtp (pull request #26)
Adds previously unused enums to switch-case to prevent compiler warnings
2013-08-25 01:49:32 +02:00
Arvid Picciani
ef0a8b3d48 Merged in jonesmz/libqxt/qxtavahipoll2 (pull request #36)
Supresses compiler warning about unused parameters by replacing a member variable usage with the paramater, the runtime behavior should remain the same
2013-08-25 01:49:11 +02:00
Arvid Picciani
82611f5b2d Merged in jonesmz/libqxt/qxtdaemon1 (pull request #31)
Use Q_UNUSED to supress compiler warning about return value
2013-08-25 01:48:29 +02:00
Arvid Picciani
62d67c509b Merged in jonesmz/libqxt/qxtmailmessage (pull request #27)
Removes unreferenced variable
2013-08-25 01:47:16 +02:00
Michael Jones
bf8d54bba7 Surrounds debug code with ifdefs 2013-08-23 14:58:54 -05:00
Michael Jones
6686bbdae4 Surrounds debug code with ifdefs 2013-08-23 14:58:00 -05:00
Michael Jones
fb63267311 Adds back missing space >_>. 2013-08-23 14:50:45 -05:00
Michael Jones
3dfa8a5186 Removes supurfluous header include. 2013-08-23 14:49:16 -05:00
Michael Jones
b15990e203 Updates handling of ::write so that the return code is considered instead of ignored. 2013-08-23 14:47:59 -05:00
Michael Jones
45c0886ae7 Supresses warning about unused enum values in a switch case by using the default case. 2013-08-23 11:53:29 -05:00
Michael Jones
97d47c21e5 Supresses compiler warning about unused parameter using Q_UNUSED macro 2013-08-23 11:52:04 -05:00
Arvid Picciani
60678d3132 Merged in jonesmz/libqxt/qxtcommandoptions1 (pull request #28)
Removes unreferenced variable
2013-08-23 00:14:01 +02:00
Arvid Picciani
be8ca3257d Merged in jonesmz/libqxt/qxtcommandoptions2 (pull request #29)
Removes unreferenced variable
2013-08-23 00:13:14 +02:00
Arvid Picciani
7cc9373b82 Merged in jonesmz/libqxt/qxtlogger (pull request #30)
Uses Q_UNUSED macro to suppress compiler warnings about unused parameter
2013-08-23 00:12:02 +02:00
Arvid Picciani
79180216ff Merged in jonesmz/libqxt/qxtdaemon2 (pull request #32)
Uses Q_UNUSED macro to suppress compiler warnings about unused parameter
2013-08-23 00:08:12 +02:00
Arvid Picciani
51a7e516d3 Merged in jonesmz/libqxt/qxtmdns_avahi1 (pull request #33)
For some reason qt5 isn't doing the auto promotion that it should be on this. Wrapping it with a constructor to the type it should be auto promoted into fixes the compiler error
2013-08-23 00:07:11 +02:00
Arvid Picciani
9a750f3a0a Merged in jonesmz/libqxt/qxtmdns_avahi2 (pull request #34)
Apparently Qt has removed the toAscii function from qt5, this replaces that function call with a call to toLocal8Bit
2013-08-23 00:05:20 +02:00
Arvid Picciani
f073edcc21 Merged in jonesmz/libqxt-qt5-linux-configure (pull request #25)
Updates linux configure script to handle building for qt5
2013-08-22 23:59:36 +02:00
Arvid Picciani
7756bb4991 Merged in jonesmz/libqxt/qxtavahipoll1 (pull request #35)
Supresses two compiler warnings about unused parameters using the Q_UNUSED macro
2013-08-22 22:16:56 +02:00
Michael Jones
dc3d0376f8 Apparently Qt has removed the toAscii function from qt5, this replaces that function call with a call to toLocal8Bit 2013-08-22 15:02:02 -05:00
Michael Jones
1e4c9ba907 For some reason qt5 isn't doing the auto promotion that it should be on this. Wrapping it with a constructor to the type it should be auto promoted into fixes the compiler error 2013-08-22 15:00:52 -05:00
Michael Jones
985be4cd97 Supresses compiler warning about unused parameters by replacing a member variable usage with the paramater, the runtime behavior should remain the same 2013-08-22 14:59:31 -05:00
Michael Jones
ff48284671 Supresses two compiler warnings about unused parameters using the Q_UNUSED macro 2013-08-22 14:58:09 -05:00
Michael Jones
02094d57e2 Uses Q_UNUSED macro to suppress compiler warnings about unused parameter 2013-08-22 14:23:34 -05:00
Michael Jones
80f61a291b Use Q_UNUSED to supress compiler warning about return value 2013-08-22 14:22:28 -05:00
Michael Jones
ed6af55c82 Removes unreferenced variable 2013-08-22 14:21:11 -05:00
Michael Jones
5a058b5f85 Removes unreferenced variable 2013-08-22 14:20:20 -05:00
Michael Jones
f1402b1874 Removes unreferenced variable 2013-08-22 14:18:44 -05:00
Michael Jones
eadbd249ad Uses Q_UNUSED macro to suppress compiler warnings about unused parameter 2013-08-22 14:17:42 -05:00
Michael Jones
0c098ff0e5 Adds previously unused enums to switch-case to prevent compiler warnings 2013-08-22 14:16:26 -05:00
Michael Jones
6e61d1541c Updates linux configure script to handle building for qt5 2013-08-20 19:29:03 -05:00
Adam Higerd
81f56ebf5b add QxtSslServer::setProtocol 2013-07-19 23:28:44 -07:00
Arvid Picciani
90fa6f95cd Merged in IceCreamWarrior/libqxt_burk/UndoPullRequest17 (pull request #23)
Revert "Merge QXT_SOURCE_TREE and QXT_BUILD_TREE variables into one."
2013-07-19 22:34:48 +02:00
Burkhard Daniel
c08e1b9389 Revert "Merge QXT_SOURCE_TREE and QXT_BUILD_TREE variables into one."
This reverts commit 543562e87e.
2013-07-18 12:09:00 +02:00
Arvid Picciani
238b5e4947 Merged in jonesmz/libqxt/Fix_featuresDir_for_qt5 (pull request #20)
Update for features dir for Qt5
2013-07-16 15:25:17 +02:00
Michael Jones
a780b2bcc1 Merge branch 'master' of https://bitbucket.org/jonesmz/libqxt into Fix_featuresDir_for_qt5 2013-07-15 17:50:44 -05:00