[mythtv-commits] Ticket #1359: metadata in mythgame

MythTV mythtv at cvs.mythtv.org
Sun Mar 12 19:35:52 UTC 2006


#1359: metadata in mythgame
-----------------------+----------------------------------------------------
 Reporter:  anonymous  |        Owner:  greg    
     Type:  defect     |       Status:  assigned
 Priority:  minor      |    Milestone:          
Component:  mythgame   |      Version:  0.19    
 Severity:  low        |   Resolution:          
-----------------------+----------------------------------------------------
Comment (by anonymous):

 Yes, I noticed this too and tracked it down to gamehandler.cpp. The fix is
 to delete the trailing space in the SELECT statement in InitMetaData()
 (just after the semicolon and before the closing double quote). Change
 this:

 QString thequery = QString("SELECT crc, category, year, country, name, "
 "description, publisher, platform, version, "
 "binfile FROM romdb WHERE platform = \"%1\"; ")
 .arg(Game``Type);

 To this:

 QString thequery = QString("SELECT crc, category, year, country, name, "
 "description, publisher, platform, version, "
 "binfile FROM romdb WHERE platform = \"%1\";")
 .arg(Game``Type);

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/1359>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list