Changeset 33
- Timestamp:
- 05/01/07 12:11:39 (6 years ago)
- Location:
- trunk/OpenYahtzee
- Files:
-
- 1 added
- 6 edited
-
openyahtzee.kdevelop (modified) (8 diffs)
-
openyahtzee.kdevelop.pcs (modified) (previous)
-
openyahtzee.kdevses (modified) (2 diffs)
-
src/MainFrame.cpp (modified) (3 diffs)
-
src/Makefile.am (modified) (1 diff)
-
src/Makefile.in (modified) (1 diff)
-
src/icon32.xpm (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/OpenYahtzee/openyahtzee.kdevelop
r32 r33 14 14 <projectdirectory>.</projectdirectory> 15 15 <absoluteprojectpath>false</absoluteprojectpath> 16 <description ></description>17 <versioncontrol ></versioncontrol>16 <description/> 17 <versioncontrol/> 18 18 </general> 19 19 <kdevautoproject> … … 30 30 </runarguments> 31 31 <customdirectory>/</customdirectory> 32 <programargs ></programargs>32 <programargs/> 33 33 <autocompile>true</autocompile> 34 34 <envvars/> … … 79 79 <numberofjobs>1</numberofjobs> 80 80 <dontact>false</dontact> 81 <makebin ></makebin>81 <makebin/> 82 82 <prio>0</prio> 83 83 </make> … … 152 152 <docsystem>Doxygen Documentation Collection</docsystem> 153 153 <docurl>openyahtzee.tag</docurl> 154 <usermanualurl ></usermanualurl>154 <usermanualurl/> 155 155 </projectdoc> 156 156 </kdevdocumentation> … … 188 188 </codecompletion> 189 189 <creategettersetter> 190 <prefixGet ></prefixGet>190 <prefixGet/> 191 191 <prefixSet>set</prefixSet> 192 192 <prefixVariable>m_,_</prefixVariable> … … 204 204 <kdevdebugger> 205 205 <general> 206 <programargs ></programargs>207 <gdbpath ></gdbpath>208 <dbgshell ></dbgshell>209 <configGdbScript ></configGdbScript>210 <runShellScript ></runShellScript>211 <runGdbScript ></runGdbScript>206 <programargs/> 207 <gdbpath/> 208 <dbgshell/> 209 <configGdbScript/> 210 <runShellScript/> 211 <runGdbScript/> 212 212 <breakonloadinglibs>true</breakonloadinglibs> 213 213 <separatetty>false</separatetty> … … 223 223 <custom>false</custom> 224 224 <bzip>false</bzip> 225 <archname ></archname>225 <archname/> 226 226 <appname>OpenYahtzee</appname> 227 227 <version>1.6</version> 228 <release ></release>228 <release/> 229 229 <vendor>Guy Rutenberg</vendor> 230 230 <licence>GPL</licence> 231 <summary ></summary>232 <group ></group>233 <packager ></packager>234 <description ></description>235 <changelog ></changelog>231 <summary/> 232 <group/> 233 <packager/> 234 <description/> 235 <changelog/> 236 236 <devpackage>false</devpackage> 237 237 <docspackage>false</docspackage> … … 242 242 <ftpkde>false</ftpkde> 243 243 <appskde>false</appskde> 244 <url ></url>244 <url/> 245 245 </dist> 246 246 </kdevelop> -
trunk/OpenYahtzee/openyahtzee.kdevses
r32 r33 10 10 </Doc1> 11 11 <Doc2 NumberOfViews="1" URL="file:///home/guy/workspace/OpenYahtzee/src/MainFrame.cpp" > 12 <View0 line="60"Type="Source" />12 <View0 Type="Source" /> 13 13 </Doc2> 14 14 <Doc3 NumberOfViews="1" URL="file:///home/guy/workspace/OpenYahtzee/src/ObjectsID.h" > … … 22 22 </Doc5> 23 23 <Doc6 NumberOfViews="1" URL="file:///home/guy/workspace/OpenYahtzee/src/HighScoreTableDB.cpp" > 24 <View0 line="0"Type="Source" />24 <View0 Type="Source" /> 25 25 </Doc6> 26 26 <Doc7 NumberOfViews="1" URL="file:///home/guy/workspace/OpenYahtzee/src/SettingsDialog.cpp" > -
trunk/OpenYahtzee/src/MainFrame.cpp
r32 r33 47 47 48 48 //include the icon file 49 #include "icon.xpm" 50 49 #ifdef WIN32 50 #include "icon32.xpm" 51 #else 52 #include "icon.xpm" 53 #endif 51 54 52 55 //default values … … 58 61 { 59 62 //give the frame an icon 60 //SetIcon(wxIcon(icon_xpm)); 63 #ifdef WIN32 64 SetIcon(wxIcon(icon32_xpm)); 65 #else 61 66 SetIcon(wxIcon(icon_xpm)); 67 #endif 68 62 69 std::ostringstream sstr; 63 70 … … 249 256 wxString msg; 250 257 wxString sqliteversion = wxString(sqlite3_version,wxConvUTF8); 251 msg.Printf(wxT("OpenYahtzee 1. 5.1\nCopyright (C) 2006 by Guy Rutenberg\n\nThis program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nOpenYahtzee was built against:\nwxWidgets %i.%i\n"),wxMAJOR_VERSION,wxMINOR_VERSION);258 msg.Printf(wxT("OpenYahtzee 1.6\nCopyright (C) 2006 by Guy Rutenberg\n\nThis program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nOpenYahtzee was built against:\nwxWidgets %i.%i\n"),wxMAJOR_VERSION,wxMINOR_VERSION); 252 259 msg += wxT("SQLite ") + sqliteversion; 253 260 -
trunk/OpenYahtzee/src/Makefile.am
r30 r33 1 1 bin_PROGRAMS = openyahtzee 2 2 openyahtzee_SOURCES = openyahtzee.cpp MainFrame.cpp five.xpm four.xpm one.xpm \ 3 six.xpm three.xpm two.xpm DBwrapper.cpp DBwrapper.h SettingsDB.cpp \4 HighScoreTableDB.cpp HighScoreDialog.cpp SettingsDialog.cpp icon.xpm3 six.xpm three.xpm two.xpm DBwrapper.cpp DBwrapper.h SettingsDB.cpp \ 4 HighScoreTableDB.cpp HighScoreDialog.cpp SettingsDialog.cpp icon.xpm icon32.xpm 5 5 6 6 # set the include path found by configure -
trunk/OpenYahtzee/src/Makefile.in
r30 r33 185 185 target_alias = @target_alias@ 186 186 openyahtzee_SOURCES = openyahtzee.cpp MainFrame.cpp five.xpm four.xpm one.xpm \ 187 six.xpm three.xpm two.xpm DBwrapper.cpp DBwrapper.h SettingsDB.cpp \188 HighScoreTableDB.cpp HighScoreDialog.cpp SettingsDialog.cpp icon.xpm187 six.xpm three.xpm two.xpm DBwrapper.cpp DBwrapper.h SettingsDB.cpp \ 188 HighScoreTableDB.cpp HighScoreDialog.cpp SettingsDialog.cpp icon.xpm icon32.xpm 189 189 190 190
Note: See TracChangeset
for help on using the changeset viewer.
