summaryrefslogtreecommitdiffstats
path: root/src/gui/gui.gtkaml
diff options
context:
space:
mode:
authorpancake <none@none>2009-12-22 00:08:47 +0100
committerpancake <none@none>2009-12-22 00:08:47 +0100
commite2aaa2cb402db09bf510bb877a4f3bfe941514e9 (patch)
tree25ef992d5a49a977e587cd6e11e18a1be7b7e599 /src/gui/gui.gtkaml
parent4d7899fa4034393ce835f749c3ab64e83d12b590 (diff)
download0xFFFF-e2aaa2cb402db09bf510bb877a4f3bfe941514e9.tar.bz2
* Add C files of the gui, so it can be built without gtkamlc or valac * Fix build of gui.gtkaml (sync with last vala) * Update version number in gui about dialog * Some syntax cleanup and removed some unnecesary printf calls
Diffstat (limited to 'src/gui/gui.gtkaml')
-rw-r--r--src/gui/gui.gtkaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui.gtkaml b/src/gui/gui.gtkaml
index e5c9e97..7e73a1a 100644
--- a/src/gui/gui.gtkaml
+++ b/src/gui/gui.gtkaml
@@ -78,7 +78,7 @@
<AboutDialog class:standalone="true" class:private="aboutdialog1" delete-event="{aboutdialog1.hide_on_delete}"
border-width="5" title="About 0xFFFF gui" resizable="false" modal="true"
window-position="{WindowPosition.CENTER_ON_PARENT}" has-separator="false"
- program-name="0xFFFF" version="0.3.9" copyright="Copyright (c) 2008 pancake"
+ program-name="0xFFFF" version="0.5" copyright="Copyright (c) 2007-2009 pancake"
comments="The Free Nokia Internet Tablet flasher"
website="http://www.nopcode.org/0xFFFF/"
authors='{new string[] {"pancake (pancake@youterm.com)", null}}'>
@@ -143,7 +143,7 @@ public bool loadFile( string filename )
{
int err = 0;
try {
- string contents; int length;
+ string contents; size_t length;
FileUtils.get_contents (filename, out contents, out length);
//textview1.buffer.set_text (contents, length);
} catch(Error e) {