summary refs log tree commit diff stats
path: root/src
AgeCommit message (Expand)Author
2013-05-12Factored locale related code in main() to a new function.Diogo Sousa
2013-05-12Now hexchat doesn't abnormally terminal when started as root.Diogo Sousa
2013-05-12Remember selected tabBerke Viktor
2013-05-12Fix warningBerke Viktor
2013-05-12Add code for migrating existing configsBerke Viktor
2013-05-12CosmeticsBerke Viktor
2013-05-12Make the order consistent for load and saveBerke Viktor
2013-05-12Add auto-reconnect to preferencesTingPing
2013-05-12Fixed misleading comments identifying the coloursHeiki Ojasild
2013-05-12Remove unused variableBerke Viktor
2013-05-12Reduce GLib requirementBerke Viktor
2013-05-12Remove dead GLib codeBerke Viktor
2013-05-12Fix favorite channels except in inbound.cBerke Viktor
2013-05-11Fix crash when quickly attaching/detaching tabsTingPing
2013-05-11Add explanation as wellBerke Viktor
2013-05-11Make login type more intuitive and disable unused /NSBerke Viktor
2013-05-11Remove dead codeBerke Viktor
2013-05-11Fix connect commandsBerke Viktor
2013-05-11Fix layout when resizedBerke Viktor
2013-05-11Allocate all extra vertical space to the treeviewsBerke Viktor
2013-05-11Set up window sizes correctlyBerke Viktor
2013-05-11Reorganize the network editorBerke Viktor
2013-05-11GtkComboBoxText requires GTK+ 2.24, dump code for older versionsBerke Viktor
2013-05-11Reorganize a bit and fix spacingBerke Viktor
2013-05-11Re-enable resizeBerke Viktor
2013-05-11fix errorTingPing
2013-05-11serverlistgui cleanupTingPing
2013-05-11Merge pull request #582 from Repentinus/patch-1TingPing
2013-05-11CosmeticsBerke Viktor
2013-05-11Make logmask consistent with scrollback maskBerke Viktor
2013-05-11Remove some redundancyBerke Viktor
2013-05-11Also disable labels, not just entriesBerke Viktor
2013-05-11Nuke nickserv password field and some cosmeticsBerke Viktor
2013-05-11Get rid of this unnecessary bufferBerke Viktor
2013-05-11Skeleton for tabbed uiBerke Viktor
2013-05-11Reorganize the network listBerke Viktor
2013-05-10Replace various network options with universal login method optionBerke Viktor
2013-05-09Added support for marking nicks that are away in different colour when away_s...Repentinus
2013-05-09Add option to support away tracking regardless of channel sizeHeiki Ojasild
2013-05-09Now process_numeric() passes the right session context to text_emit() when anDiogo Sousa
2013-05-08stop using gconfTingPing
2013-05-08Fix server tab changing color when activeTingPing
2013-05-08Show hours for last seen in friends listTingPing
2013-05-07Have gui_input_icon depend on gui_input_nick in prefsTingPing
2013-05-06Clean up IRCNetTingPing
2013-05-04Replace g_strdup_printf with g_build_filename where possibleBerke Viktor
2013-05-03Merge branch 'py3k' of git://github.com/TingPing/hexchatTingPing
2013-05-03Add python3 pluginTingPing
2013-05-03commaTingPing
2013-05-03update gamesurge's default nickserv typeTingPing
pan class="n">CString result; InvokeHelper(0x2ef, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL); return result; } CString CWMPMedia::GetName() { CString result; InvokeHelper(0x2fc, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL); return result; } void CWMPMedia::SetName(LPCTSTR lpszNewValue) { static BYTE parms[] = VTS_BSTR; InvokeHelper(0x2fc, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, lpszNewValue); } long CWMPMedia::GetImageSourceWidth() { long result; InvokeHelper(0x2f0, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL); return result; } long CWMPMedia::GetImageSourceHeight() { long result; InvokeHelper(0x2f1, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL); return result; } long CWMPMedia::GetMarkerCount() { long result; InvokeHelper(0x2f2, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL); return result; } double CWMPMedia::getMarkerTime(long MarkerNum) { double result; static BYTE parms[] = VTS_I4; InvokeHelper(0x2f3, DISPATCH_METHOD, VT_R8, (void*)&result, parms, MarkerNum); return result; } CString CWMPMedia::getMarkerName(long MarkerNum) { CString result; static BYTE parms[] = VTS_I4; InvokeHelper(0x2f4, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms, MarkerNum); return result; } double CWMPMedia::GetDuration() { double result; InvokeHelper(0x2f5, DISPATCH_PROPERTYGET, VT_R8, (void*)&result, NULL); return result; } CString CWMPMedia::GetDurationString() { CString result; InvokeHelper(0x2f6, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL); return result; } long CWMPMedia::GetAttributeCount() { long result; InvokeHelper(0x2f7, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL); return result; } CString CWMPMedia::getAttributeName(long lIndex) { CString result; static BYTE parms[] = VTS_I4; InvokeHelper(0x2f8, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms, lIndex); return result; } CString CWMPMedia::getItemInfo(LPCTSTR bstrItemName) { CString result; static BYTE parms[] = VTS_BSTR; InvokeHelper(0x2f9, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms, bstrItemName); return result; } void CWMPMedia::setItemInfo(LPCTSTR bstrItemName, LPCTSTR bstrVal) { static BYTE parms[] = VTS_BSTR VTS_BSTR; InvokeHelper(0x2fa, DISPATCH_METHOD, VT_EMPTY, NULL, parms, bstrItemName, bstrVal); } CString CWMPMedia::getItemInfoByAtom(long lAtom) { CString result; static BYTE parms[] = VTS_I4; InvokeHelper(0x2fd, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms, lAtom); return result; } BOOL CWMPMedia::isMemberOf(LPDISPATCH pPlaylist) { BOOL result; static BYTE parms[] = VTS_DISPATCH; InvokeHelper(0x2fe, DISPATCH_METHOD, VT_BOOL, (void*)&result, parms, pPlaylist); return result; } BOOL CWMPMedia::isReadOnlyItem(LPCTSTR bstrItemName) { BOOL result; static BYTE parms[] = VTS_BSTR; InvokeHelper(0x2ff, DISPATCH_METHOD, VT_BOOL, (void*)&result, parms, bstrItemName); return result; }