diff options
author | Ted Gould <ted@gould.cx> | 2010-08-11 09:50:14 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-11 09:50:14 -0500 |
commit | fd956d9ac1489d8dc12827df67e9a201da43bc9d (patch) | |
tree | 4c10265bc47765e38e32dbe95dd43dd83e388fa7 /src/application-service-appstore.c | |
parent | 77343b7e956416b2d2a8e45b5a2a2e683e1ed836 (diff) | |
download | libayatana-appindicator-fd956d9ac1489d8dc12827df67e9a201da43bc9d.tar.gz libayatana-appindicator-fd956d9ac1489d8dc12827df67e9a201da43bc9d.tar.bz2 libayatana-appindicator-fd956d9ac1489d8dc12827df67e9a201da43bc9d.zip |
Flipping the order
Diffstat (limited to 'src/application-service-appstore.c')
-rw-r--r-- | src/application-service-appstore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index 2306230..57f8871 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -530,7 +530,7 @@ app_sort_func (gconstpointer a, gconstpointer b, gpointer userdata) { Application * appa = (Application *)a; Application * appb = (Application *)b; - return appa->ordering_index - appb->ordering_index; + return appb->ordering_index - appa->ordering_index; } /* Change the status of the application. If we're going passive |