Saturday, July 14th, 2012, 00:06 UTC | ||
[00:06:37] | mrand (mrand!~mrand@ubuntu/member/mrand) has quit (Ping timeout: 246 seconds) | |
[00:06:59] | mrand (mrand!~mrand@ubuntu/member/mrand) has joined #mythtv | |
[00:13:43] | XDS2010 (XDS2010!users.1218@id-1218.hampstead.irccloud.com) has quit (Read error: Connection reset by peer) | |
[00:14:03] | XDS2010 (XDS2010!users.1218@id-1218.hampstead.irccloud.com) has joined #mythtv | |
[00:17:42] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has quit (Quit: Body blow! Body blow!) | |
[00:23:38] | mrand (mrand!~mrand@ubuntu/member/mrand) has quit (Ping timeout: 252 seconds) | |
[00:31:42] | mrand (mrand!~mrand@ubuntu/member/mrand) has joined #mythtv | |
[00:31:45] | vallor (vallor!~Ponzo@pdpc/supporter/monthlygold/vallor) has quit (Remote host closed the connection) | |
[00:39:10] | vallor (vallor!~Ponzo@pdpc/supporter/monthlygold/vallor) has joined #mythtv | |
[00:52:28] | Mousey (Mousey!~r0dent_@ross154.net) has quit (Ping timeout: 255 seconds) | |
[01:46:22] | amejia (amejia!~andres@xbmc/staff/amejia) has quit (Quit: Konversation terminated!) | |
[02:00:15] | cecil_ is now known as cesman | |
[02:00:26] | cesman (cesman!~cesman@pool-108-0-54-134.lsanca.fios.verizon.net) has quit (Changing host) | |
[02:00:26] | cesman (cesman!~cesman@pdpc/supporter/professional/cesman) has joined #mythtv | |
[02:20:12] | zombor (zombor!~zombor_@65.29.231.135) has joined #mythtv | |
[02:20:12] | zombor (zombor!~zombor_@65.29.231.135) has quit (Changing host) | |
[02:20:12] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[02:29:38] | andreax (andreax!~andreaz@p5089FC62.dip.t-dialin.net) has joined #mythtv | |
[02:30:11] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[03:58:16] | stichnot (stichnot!stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[04:01:47] | stichnot (stichnot!stichnot@mythtv/developer/stichnot) has quit (Quit: ChatZilla 0.9.88.2 [Firefox 5.0/20110615151330]) | |
[04:02:30] | andreax1 (andreax1!~andreaz@p54BF353F.dip.t-dialin.net) has joined #mythtv | |
[04:02:32] | andreax (andreax!~andreaz@p5089FC62.dip.t-dialin.net) has quit (Ping timeout: 252 seconds) | |
[04:04:38] | stichnot (stichnot!stichnot@nat/intel/x-aipvcvbgzevrcfhw) has joined #mythtv | |
[04:04:38] | stichnot (stichnot!stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[04:04:38] | stichnot (stichnot!stichnot@nat/intel/x-aipvcvbgzevrcfhw) has quit (Changing host) | |
[04:18:45] | kormoc (kormoc!~kormoc@mythtv/developer/kormoc) has joined #mythtv | |
[04:25:03] | jya: | trying to add some signals handling in the MythCoreContext class (I originally add them in tv_play.cpp, but thought it was better suited in CC)… I'm having an issue with it compiling properly as soon as as make MythCoreContext inherit from QObject |
[04:25:26] | jya: | danielk22: are you there? |
[04:35:57] | jya: | ok… make distclean seems to have fixed this… damn moc_ |
[04:39:37] | Beirdo: | danielk: #10867.. It's now coredumping in the database stuff? I don't know how much more I can find there |
[04:39:37] | ** MythLogBot http://code.mythtv.org/trac/ticket/10867 ** | |
[04:42:12] | zombor (zombor!~zombor_@65.29.231.135) has joined #mythtv | |
[04:42:12] | zombor (zombor!~zombor_@65.29.231.135) has quit (Changing host) | |
[04:42:12] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[04:56:08] | dblain (dblain!~dblain@mythtv/developer/dblain) has quit () | |
[04:59:42] | kormoc (kormoc!~kormoc@mythtv/developer/kormoc) has quit (Quit: kormoc) | |
[05:05:24] | dblain (dblain!~dblain@mythtv/developer/dblain) has joined #mythtv | |
[05:24:53] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[05:29:42] | clever: | jya: sounds like a .h file not properly listed in the .pro |
[05:29:56] | clever: | jya: which means the _moc.c doesnt depend on the .h in the Makefile, requiring a distclean |
[05:30:15] | jya: | clever: wasn't the case... |
[05:30:25] | clever: | did you alter a .h file? |
[05:30:46] | jya: | the issue was a linker issue in libmythtv from a change made in libmythbase |
[05:32:34] | jya: | the file mythcorecontext wasn't a QObject inheriting class, nor did it include the Q_OBJECT macro, as such no moc_ had been generated. |
[05:33:30] | jya: | when I modified it, a moc_ had to be generated. this require the makefile to be regenerated, but no .pro file had been modified |
[05:34:24] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[05:36:17] | clever: | ah |
[05:36:25] | clever: | so it just needed qmake re-ran in the right directory |
[05:36:36] | clever: | not the issue i was thinking of |
[05:36:46] | jya: | yes.. make distclean & configure was the easiest combination |
[05:37:50] | jya: | mind you… the error at first were very bizarre… First I had compilation error, then finally was missing entry in the vtable I had no idea ever existed |
[05:38:26] | clever: | yeah, it uses a virtual function to route signals/slots to the lowest class in the inheritance chain |
[05:39:13] | jya: | and I had about 3 segfault of clang++ on tv_play.cpp |
[06:01:36] | Beirdo: | clang this; :) |
[06:17:05] | MaverickTech (MaverickTech!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 244 seconds) | |
[06:27:45] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[07:30:54] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has joined #mythtv | |
[07:46:17] | MaverickTech (MaverickTech!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv | |
[09:27:53] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has quit (Remote host closed the connection) | |
[09:57:53] | stuartm: | http://svn.mythtv.org/trac/ticket/10255 – I don't suppose it ever occurred to report the issue of a rebooting TV to the manufacturer who is actually responsible |
[10:06:07] | jya: | why?? it's MythTV fault obviously :) |
[10:06:22] | jya: | I think it's the first time I've ever heard of a TV rebooting :) |
[10:26:41] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has joined #mythtv | |
[10:37:07] | joki (joki!~joki@p54864DB5.dip.t-dialin.net) has quit (Ping timeout: 265 seconds) | |
[10:37:20] | joki- (joki-!~joki@p5486363F.dip.t-dialin.net) has joined #mythtv | |
[10:37:29] | joki- is now known as joki | |
[10:42:42] | dekarl (dekarl!~dekarl@p4FCEFDDF.dip.t-dialin.net) has joined #mythtv | |
[10:44:51] | dekarl1 (dekarl1!~dekarl@p4FCEE9AA.dip.t-dialin.net) has quit (Ping timeout: 265 seconds) | |
[12:04:21] | stuartm: | Beirdo: so BBC weather location search is broken again, this time it might be for good – they've dropped a lot of APIs as a cost saving measure and since they use the Met Office data for the UK at least I'm thinking that we should just drop the BBC grabbers altogether |
[12:05:14] | stuartm: | it will affect users outside the UK who rely on the BBC grabber, but if the location search is broken it's only a matter of time before they are unable to use it at all |
[12:21:34] | MythBuild: | build #4057 of master-linux-64bit is complete: Failure [4failed compile plugins] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/4057 blamelist: Stuart Morgan <smorgan@mythtv.org > |
[12:24:35] | MythBuild: | build #2784 of master-linux-ppc is complete: Failure [4failed compile plugins] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/2784 blamelist: Stuart Morgan <smorgan@mythtv.org > |
[12:29:39] | MythBuild: | build #2856 of master-freebsd-64bit is complete: Failure [4failed compile plugins] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/2856 blamelist: Stuart Morgan <smorgan@mythtv.org > |
[12:56:54] | danielk22: | jya: MythCoreContext shouldn't inherit from QObject or use signals/slots. We banned those from anything used by the backend and mythcorecontext is used in the backend. |
[13:25:48] | zombor (zombor!~zombor_@65.29.231.135) has joined #mythtv | |
[13:25:48] | zombor (zombor!~zombor_@65.29.231.135) has quit (Changing host) | |
[13:25:48] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[13:41:35] | rsiebert (rsiebert!~quassel@g224251154.adsl.alicedsl.de) has joined #mythtv | |
[13:41:58] | rsiebert_ (rsiebert_!~quassel@g225056187.adsl.alicedsl.de) has quit (Ping timeout: 246 seconds) | |
[13:54:27] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has quit (Remote host closed the connection) | |
[14:03:41] | amejia (amejia!~andres@xbmc/staff/amejia) has joined #mythtv | |
[14:14:26] | Defense|Twin (Defense|Twin!~jepz@e177239133.adsl.alicedsl.de) has joined #mythtv | |
[14:37:38] | amejia (amejia!~andres@xbmc/staff/amejia) has quit (Ping timeout: 245 seconds) | |
[14:38:03] | brfransen (brfransen!~brfransen@64.179.142.146) has quit (Ping timeout: 245 seconds) | |
[14:40:04] | amejia (amejia!~andres@c-76-111-72-98.hsd1.va.comcast.net) has joined #mythtv | |
[14:40:04] | amejia (amejia!~andres@xbmc/staff/amejia) has joined #mythtv | |
[14:40:04] | amejia (amejia!~andres@c-76-111-72-98.hsd1.va.comcast.net) has quit (Changing host) | |
[15:06:19] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has joined #mythtv | |
[15:19:38] | amejia (amejia!~andres@xbmc/staff/amejia) has joined #mythtv | |
[15:26:53] | jpabq (jpabq!~jpabq@mythtv/developer/jpabq) has quit (Quit: Coyote finally caught me) | |
[15:29:03] | jpabq (jpabq!~jpabq@mythtv/developer/jpabq) has joined #mythtv | |
[16:11:30] | Beirdo: | stuartm: the "none" string is already treated as blank by mythui when it goes to load an image, BTW. Making it blank is unnecessary unless you were planning on changing that :) |
[16:12:11] | stuartm: | Beirdo: since when? |
[16:12:33] | Beirdo: | not sure, let me check |
[16:13:36] | Beirdo: | since 2009 |
[16:13:38] | stuartm: | it's ok, I've got the commit |
[16:13:59] | Beirdo: | line 1301 of mythuihelper.cpp |
[16:14:14] | stuartm: | yeah, don't really like that, seems to be fixing a bug in the wrong place |
[16:14:52] | stuartm: | https://github.com/MythTV/mythtv/commit/c9feae0d |
[16:15:16] | Beirdo: | there might be other places that rely on it, but I think it's mainly weather |
[16:15:34] | stuartm: | I wonder where we were passing "none" to MythUIImage ... |
[16:15:40] | Beirdo: | some themes maybe? |
[16:16:29] | Beirdo: | anyways, as you wish :) Either way works, and I agree, it should be fixed at the source if possible |
[16:16:37] | stuartm: | maybe, I'll have to track down the offenders :) |
[16:18:09] | stuartm: | just don't much like that in an API, passing an empty string does the same thing, although even then the 'proper' way is to call Reset() instead of SetFilename()/Load() when you don't have a url |
[16:18:43] | stuartm: | if you have too many ways to do the same thing it quickly becomes a mess |
[16:20:51] | Beirdo: | sure does |
[16:22:41] | Beirdo: | BTW, you offended the buildbot's sensibilities |
[16:23:01] | stuartm: | mythuiimage will catch the empty string case long before we get to LoadScaleImage() so it avoids unnecessary threads being created to try loading a non-existent image |
[16:23:10] | stuartm: | Beirdo: oh? |
[16:23:28] | Beirdo: | weatherScreen.cpp: In member function ‘QString WeatherScreen::formatDataItem(const QString&, const QString&)’: |
[16:23:31] | Beirdo: | weatherScreen.cpp:240: error: passing ‘const QString’ as ‘thisâ€Â& trade; argument of ‘QString& QString::operator=(const char*)’ discards qualifiers |
[16:25:15] | Beirdo: | it only complained on a few builds though, could be a Qt version thing |
[16:25:29] | stuartm: | oops, ok I'll fix that now |
[16:26:16] | stuartm: | nah, it's a C/C++ thing, perfectly valid warning |
[16:26:35] | stuartm: | shouldn't have compiled |
[16:29:46] | stuartm: | Beirdo: thanks for the heads up |
[16:41:34] | MythBuild: | build #4058 of master-linux-64bit is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/4058 |
[16:44:44] | MythBuild: | build #2785 of master-linux-ppc is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/2785 |
[16:45:30] | Beirdo: | no problemo |
[16:46:04] | Beirdo: | Well, time to clean up a wee bit. My mom's flight is in at 15:30. It's now 09:45 |
[16:50:06] | MythBuild: | build #2857 of master-freebsd-64bit is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/2857 |
[16:50:53] | toeb (toeb!~tob@HSI-KBW-078-042-104-026.hsi3.kabel-badenwuerttemberg.de) has quit (Read error: Connection reset by peer) | |
[16:51:06] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has quit (Quit: Leaving.) | |
[16:51:59] | toeb (toeb!~tob@HSI-KBW-078-042-104-026.hsi3.kabel-badenwuerttemberg.de) has joined #mythtv | |
[17:00:54] | gigem: | stuartm: Great. Hopefully that's the end of the deadlocks for a while. |
[17:16:32] | mrand (mrand!~mrand@ubuntu/member/mrand) has quit (Ping timeout: 246 seconds) | |
[17:19:02] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[17:30:51] | eharris (eharris!~eharris@99-179-7-82.lightspeed.austtx.sbcglobal.net) has quit (Ping timeout: 265 seconds) | |
[17:32:15] | eharris (eharris!~eharris@99-179-7-82.lightspeed.austtx.sbcglobal.net) has joined #mythtv | |
[17:32:49] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[17:49:17] | mrand (mrand!~mrand@ubuntu/member/mrand) has joined #mythtv | |
[17:49:54] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[17:56:36] | zombor (zombor!~zombor_@65.29.231.135) has joined #mythtv | |
[17:56:36] | zombor (zombor!~zombor_@65.29.231.135) has quit (Changing host) | |
[17:56:36] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[17:57:26] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[17:58:26] | zombor (zombor!~zombor_@65.29.231.135) has joined #mythtv | |
[17:58:26] | zombor (zombor!~zombor_@65.29.231.135) has quit (Changing host) | |
[17:58:26] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[18:07:23] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[18:20:09] | frankster (frankster!~frankster@host86-129-130-104.range86-129.btcentralplus.com) has quit (Ping timeout: 265 seconds) | |
[18:24:24] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has quit (Remote host closed the connection) | |
[18:25:55] | zombor (zombor!~zombor_@65.29.231.135) has joined #mythtv | |
[18:25:55] | zombor (zombor!~zombor_@65.29.231.135) has quit (Changing host) | |
[18:25:55] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[18:27:29] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has joined #mythtv | |
[18:27:35] | frankster (frankster!~frankster@host86-129-130-104.range86-129.btcentralplus.com) has joined #mythtv | |
[18:28:41] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[18:32:50] | amejia (amejia!~andres@xbmc/staff/amejia) has quit (Quit: Konversation terminated!) | |
[18:37:09] | superm1 (superm1!u4318@ubuntu/member/superm1) has quit (Quit: Connection closed for inactivity) | |
[18:40:19] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[18:42:41] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has joined #mythtv | |
[19:22:44] | kormoc (kormoc!~kormoc@mythtv/developer/kormoc) has joined #mythtv | |
[19:30:07] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has joined #mythtv | |
[19:40:03] | amejia (amejia!~andres@xbmc/staff/amejia) has joined #mythtv | |
[19:41:56] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[19:42:56] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[20:14:59] | Lomion0815 (Lomion0815!~androirc@178-190-67-162.adsl.highway.telekom.at) has joined #mythtv | |
[20:30:21] | SteveGoodey (SteveGoodey!~steve@host86-129-35-147.range86-129.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[20:49:40] | zombor (zombor!~zombor_@65.29.231.135) has joined #mythtv | |
[20:49:41] | zombor (zombor!~zombor_@65.29.231.135) has quit (Changing host) | |
[20:49:41] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[20:53:46] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[20:57:03] | zombor (zombor!~zombor_@65.29.231.135) has joined #mythtv | |
[20:57:06] | zombor (zombor!~zombor_@65.29.231.135) has quit (Changing host) | |
[20:57:06] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[21:37:04] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[21:46:22] | Lomion0815 (Lomion0815!~androirc@178-190-67-162.adsl.highway.telekom.at) has quit (Ping timeout: 246 seconds) | |
[22:05:10] | Defense|Twin (Defense|Twin!~jepz@e177239133.adsl.alicedsl.de) has quit (Remote host closed the connection) | |
[22:12:30] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[22:15:35] | amejia_ (amejia_!~andres@129.174.97.130) has joined #mythtv | |
[22:15:35] | amejia_ (amejia_!~andres@xbmc/staff/amejia) has joined #mythtv | |
[22:15:35] | amejia_ (amejia_!~andres@129.174.97.130) has quit (Changing host) | |
[22:15:39] | amejia (amejia!~andres@xbmc/staff/amejia) has quit (Read error: Connection reset by peer) | |
[22:17:19] | amejia_ (amejia_!~andres@xbmc/staff/amejia) has joined #mythtv | |
[22:40:06] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has joined #mythtv | |
[22:47:37] | xavierh (xavierh!~xavier@cpc1-swin3-0-0-cust274.3-1.cable.virginmedia.com) has quit (Ping timeout: 240 seconds) | |
[22:51:28] | gregL (gregL!~greg@cpe-74-76-125-87.nycap.res.rr.com) has quit (Ping timeout: 246 seconds) | |
[22:54:03] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has quit (Quit: jya_) | |
[22:57:02] | dblain (dblain!~dblain@mythtv/developer/dblain) has quit () | |
[23:13:38] | dblain (dblain!~dblain@mythtv/developer/dblain) has joined #mythtv | |
[23:32:15] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has joined #mythtv | |
[23:33:28] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has quit (Read error: Connection reset by peer) | |
[23:33:46] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has joined #mythtv | |
[23:41:44] | stuartm: | danielk22: there's a bit of reference counting of device going on in mythmediamonitor.cpp/.h, specifically m_UseCount |
[23:42:40] | amejia_ (amejia_!~andres@xbmc/staff/amejia) has quit (Quit: Konversation terminated!) | |
[23:43:49] | stichnot (stichnot!stichnot@nat/intel/x-iivnafzxaspekhnp) has joined #mythtv | |
[23:43:49] | stichnot (stichnot!stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[23:43:49] | stichnot (stichnot!stichnot@nat/intel/x-iivnafzxaspekhnp) has quit (Changing host) | |
[23:43:56] | dblain (dblain!~dblain@mythtv/developer/dblain) has quit () | |
[23:49:08] | andreax1 (andreax1!~andreaz@p54BF353F.dip.t-dialin.net) has quit (Read error: Connection reset by peer) | |
[23:50:16] | dblain (dblain!~dblain@mythtv/developer/dblain) has joined #mythtv |
IRC Logs collected by
BeirdoBot.
Please use the above link to report any bugs.