[PC-BSD Commits] r2528 - in pbibuild/pbi-source: PBIsource PBItext
svn at pcbsd.org
svn at pcbsd.org
Tue Aug 5 10:20:39 PDT 2008
Author: kris
Date: 2008-08-05 10:20:39 -0700 (Tue, 05 Aug 2008)
New Revision: 2528
Modified:
pbibuild/pbi-source/PBIsource/pbi.cpp
pbibuild/pbi-source/PBItext/main.cpp
Log:
Fixed a bug when creating a menu entry for the Games category in the PBI installer
Modified: pbibuild/pbi-source/PBIsource/pbi.cpp
===================================================================
--- pbibuild/pbi-source/PBIsource/pbi.cpp 2008-08-05 16:22:05 UTC (rev 2527)
+++ pbibuild/pbi-source/PBIsource/pbi.cpp 2008-08-05 17:20:39 UTC (rev 2528)
@@ -971,6 +971,10 @@
{
stream << "Categories=Qt;KDE;Education;Teaching;\n";
}
+ if ( ExeKdeCat[exenum] == "Games")
+ {
+ stream << "Categories=Qt;KDE;Game;\n";
+ }
if ( ExeKdeCat[exenum] == "Games/Arcade")
{
stream << "Categories=Qt;KDE;Game;ArcadeGame;\n";
Modified: pbibuild/pbi-source/PBItext/main.cpp
===================================================================
--- pbibuild/pbi-source/PBItext/main.cpp 2008-08-05 16:22:05 UTC (rev 2527)
+++ pbibuild/pbi-source/PBItext/main.cpp 2008-08-05 17:20:39 UTC (rev 2528)
@@ -918,6 +918,10 @@
{
stream << "Categories=Qt;KDE;Education;Teaching;\n";
}
+ if ( ExeKdeCat[exenum] == "Games")
+ {
+ stream << "Categories=Qt;KDE;Game;\n";
+ }
if ( ExeKdeCat[exenum] == "Games/Arcade")
{
stream << "Categories=Qt;KDE;Game;ArcadeGame;\n";
More information about the Commits
mailing list